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
142 views
0
The method used in a variable for statement numbered in the python name.

Hello, everyone I'm running Python on Jupiter laptop I'm asking because I'm not sure how to write a for statement for a variable.The variables are from Year1 to Year10.# Year1 type conversion index = ...


1 answers
17 views
0
Python random.choice. I'd like to ask you one more question.

I know that you use random.choice (list, probability, cumulative probability, number of draws).We don't need a cumulative probability right now.The purpose of the choices function is to make the value...

2 years ago

1 answers
81 views
0
Python Multi-Threading Detects End of One Thread

def th1(): a = 0 for i in range(10): a = a + 1def th2(): while True: print(Loading)Assume that when there are two functions, the th1 and th2 functions are rotated together by multi-threading.At this...

2 years ago

1 answers
71 views
0
Access desired posts through Python string search.

This is the code I wrote so far. The purpose is to enter the article with the title of the bulletin board with the desired wordFirst of all, I even wrote the title and link of the post to include it i...

2 years ago

1 answers
18 views
0
I want to know how to get Python back to the options!

Hello!I posted the wrong question earlier, correct it again, and upload the question.I'm working on a program that calculates BMI and BMR in PythonAs you can see in the picture, there are options from...

2 years ago

1 answers
20 views
0
Is there a way to use the rest of the operation like 'myage,%d'%(a%b) in Python?

I tried to insert a number in the string, but there was an error when I used the rest of the operationsIs there any way to use % operation within %() by adding or doing something before?

2 years ago

1 answers
17 views
0
Python novice

from random import shufflefrom time import sleepgamenum = input ('Please enter the number of Lotto games:')for i in range(int(gamenum)): balls = [x+1 for x in range(45)] rat = [] for j in range(6): s...

2 years ago

1 answers
84 views
0
Python while question

Below is the width-first search algorithm codeGo back without errors and the answer is Thom.But in the while door, whilesearch_queue:while search_queue == True:I shouldn't have used it like thisWhat i...

2 years ago

1 answers
74 views
0
How you can use ctrl+c, ctrl+v on Python.

I'm writing a program to crawl the web with Python, and I wonder how I can get the ctrl+c and ctrl+v keyboard input. I'd appreciate it if you could tell me how to search for it ㅠ

2 years ago

1 answers
134 views
0
Python List Sorting in Korean and English

When sorting the Python list, English comes first, but is there a way to make Hangul come first?names = [C, AB, N, L, DA, AA, D]sorted(names)# # Output[AA, AB, C, DA, A, N, D]# # Desired Output[a, n, ...

« - 270 - »

© 2024 OneMinuteCode. All rights reserved.