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


2 answers
94 views
0
Python 'Create File' Error

When creating a file (.xlsx), it works properly on the vscode program, but when you run it through an exe file, the file is not created and an error occurs. I changed the folder permission to everyone...

2 years ago

2 answers
51 views
0
I want to print out the list name as a list element.

I would like to save the declared list by MBTI as a variable called TotalStyle and print it out in the form of 'celebrity, MBTI' through double for statement.According to the code I wrote, the TotalSt...

2 years ago

1 answers
70 views
0
Simple way to collect results when multiple Python processes are not competing

There's a task that targets fairly large table data There are about 10 columns, 5 of which are combined and extracted, and we are working on them.This result is (combination: result value (one floatin...

2 years ago

1 answers
19 views
0
Question about creating a word memorization program with Python list

Hello, I'm a person who just started coding. I'm just learning on my own by looking at the Internet, but I was bored, so I was writing down about memorizing German words, and I had a question on Stack...

2 years ago

1 answers
23 views
0
Separation of Korean and English

I want to separate it as follows, what should I do???I can only think of using reGex in the order of English, Korean, and numbers, but I think there is a better way, so I ask for your advice.# Example...

2 years ago

1 answers
92 views
0
I'm asking you a question while making Python baseball game

import randomrandom_ball = random.sample((1,2,3,4,5,6,7,8,9),3)strike = 0ball = 0while True: Guess = input (Please enter three different baseball numbers (1 to 9): ) if random_ball == guess: print (C...

2 years ago

2 answers
22 views
0
[Python] I'm very, very curious about how to renew the time in the while True statement.crying

from datetime import datetimeimport timenow= datetime.now()while TRUE : try : print(now.minute) time.sleep(3) except : pass time.sleep(3)This is... I can't update the time.ㅠ

2 years ago

1 answers
120 views
0
I'm trying to make a Python rhythm game using conditional sentences, but I can't. Please solve it.

import pygameimport randomimport timepygame.init() # Initialize pie gamedis = pygame.display.set_mode(700, 800)) #screen sizeperfect_range = 30left_animes_x = 60left_animes_y = 0right_animes_x = 300ri...


2 answers
25 views
0
To run another function when a keystroke event occurs while executing a repeat statement in Python

Python code that receives the image folder and blurs the dragged area by floating each image in the folder.[Image 1, image 2, image 3, image 4, image 5] If you have a list of images like this,During i...

2 years ago

1 answers
56 views
0
[Python] Displays the value of an empty cell as nan when recalling the value in the parsed excel sheet

When parsing Excel files and storing them in variables If specific cell empty outputs at the output. that nanI'm trying to empty my teeth again, but I don't know what to doEven if you use isnan, you'l...

2 years ago
« - 464 - »

© 2024 OneMinuteCode. All rights reserved.