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
45 views
0
Problems Connecting Django to MySQL

Regarding the API Driver for Django and MySQL connections, Django Tutorial recommends mysqlclient among MySQLdb, mysqlclient, and MySQL Connector/Python, but MySQL Connector/Python is recommended on t...

2 years ago

2 answers
14 views
0
How do I subtract the immediate value from Python and compare it to a fixed value of 120?

if sheet[A + str(i)].value == a1.name:rn = random.randint(1,100)percent = sheet[B + str(i)].valuelevel = sheet[C + str(i)].valuecooltime = sheet[D + str(i)].valueIf datetime.datetime.now()-cooltime &g...

2 years ago

2 answers
17 views
0
I'm an introvert to Python Code error

import randomsecret = random.randint(1, 99)guess = 0tries = 0print AHOY! I'm the Dread Pirate Roberts, and I have a secret!print It is a number from 1 to 99. I'll give you 6 tries. while guess != secr...

2 years ago

1 answers
96 views
0
I have a question about using Python subprocess.

As far as I know, the subprocess runs another py file, but when I actually run A1.py, only the B1.py file opens and Hello does not print out on A1's screen. I went to the console and tried putting pyt...

2 years ago

2 answers
107 views
0
I'd like to display the voice that comes into the computer in Korean.

I'm a freshman who started programming with Python.I'm a beginner who doesn't even have a basic concept of how Python works and how to code. Using Google API, the sound of words coming in through the ...


1 answers
60 views
0
I want to code to guess numbers using def.

I want to code num_guess using def.Existing num_guess coding is import randomanswer = random.randint(1,100)try_cnt = 5while True: if try_cnt == 0: print(Game over.\nThe Answer is {}.format(answer)) ...

2 years ago

1 answers
92 views
0
[Python 3] When downloading the file, the file name is brought from the content disposition, and it is a problem with broken Korean.

Download the file to Python and get the file name from content disposition to save it.However, the Korean alphabet of the file name is printed in the form of %ㅁ%ㅁ, just like the urlSymbols, numbers, l...

2 years ago

1 answers
15 views
0
When you write Python, the Korean alphabet is horizontal.

What should I do in this case? Hangul comes out horizontally when writing the Python script;

2 years ago

1 answers
59 views
0
I want to remove only one character from the string, what should I do?

Str doesn't have del or pop. I just want to take out the characters in the middle of the string, for example, To remove only the middle M from the string EXAMPLE, which of the following methods would ...

2 years ago

1 answers
100 views
0
I'm looking for a function to erase all the contents in the folder

I'm looking for a function to erase all the contents in the folderI looked it up, but os.rmdir() can only erase empty directories (although I can recursively call and create them myself).I want to kno...

« - 299 - »

© 2024 OneMinuteCode. All rights reserved.