python tag

Python is a high-level, interpreted, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.

Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming. It is often described as a "batteries included" language due to its comprehensive standard library.

Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and first released it in 1991 as Python 0.9.0. Python 2.0 was released in 2000 and introduced new features such as list comprehensions, cycle-detecting garbage collection, reference counting, and Unicode support. Python 3.0, released in 2008, was a major revision that is not completely backward-compatible with earlier versions. Python 2 was discontinued with version 2.7.18 in 2020.

Python consistently ranks as one of the most popular programming languages. It is used by many organizations and companies. Pixar, Disney, Instagram and the developers of the Linux Kernel are among many of it's high-profile users, which includes many developers of Free and Open source software.

Reference: WIKIPEDIA

4650 questions


1 answers
18 views
0
Write a program to print out your annual salary by entering your name and position

Problem 2) There are managers, managers, deputies, employees, and interns in one department of the company. The annual salary is different for each position. The manager's annual salary is 80 million ...

2 years ago

2 answers
17 views
0
I wonder why integer times 0 is possible.

Hello, I wrote the code below when I made the coin calculation program.a, b, c = map(int, input().split())result = a * 10 + b * 50 + c * 100print(result)However, I wonder why integer divided by 0 is a...

2 years ago

2 answers
102 views
0
Python tkinter : Problems when dynamically creating a button and connecting the event handler for each button using Lambda.

i = 0for f in range(len(machh)): globals()['button{}'.format(f)] = tkinter.Button(frame, command = lambda : self.Match_Deep_Search(f) ) # Create buttons as large as the list def Match_Deep_Sea...


2 answers
50 views
0
To ignore missing values and change to int type

Hello, I have the following data frame. score0 0.01 9.02 NaN3 1.04 4.0... ... 211 10.0212 4.0213 1.0214 6.0215 3.0It's in float form, but I wanted to get rid of the decimal point in integer form, so I...

2 years ago

1 answers
19 views
0
I'm practicing selenium crawling. There's a blockage.

import timeimport pandas as pdimport osimport pymysqlfrom selenium import webdriverfrom bs4 import BeautifulSoup as bsimport requestsdriver = webdriver.Chrome(C:\crawling\chromedriver.exe)driver.get('...

2 years ago

1 answers
13 views
0
When crawling, if response.status_code == 200: Why do you use this phrase?

When crawling, if response.status_code == 200: Why do you use this phrase?

2 years ago

1 answers
15 views
0
Summing up random numbers

I was studying basics and I was going to make a dice game2 players throw 5 times each to make a game in which a player with a larger sum wins. As shown above, we have created a code to make the result...

2 years ago

2 answers
96 views
0
How to divide the values of dictionaries

For example, a = {'apple': 12, 'banana': 20}b = {'Apple': 3, 'Banana': 6}Divide these two dictionaries into two {'Apple': 4, 'Banana': 3.33333} Isn't there a way to make it come out like this?

2 years ago

2 answers
69 views
0
Question for tasks that are printed by adding more digits

print(fday's digit:,num/1)print(<<Number extraction operation>>)num=int (input (▣four-digit integer =>))print (==== output result ====)print (fcloth digits:,num/1000)num=num%1000print (...

2 years ago

1 answers
70 views
0
Login error using dictionary. Incorrect number password match.

I wanted to create a login program using dictionaries Write down the password for the memberI made a program to check if the name is included or if the password of the member matches.We can check the ...

2 years ago
« - 412 - »

© 2024 OneMinuteCode. All rights reserved.