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
15 views
0
Can Python respond to two lists 1:1?

I'd like to rename the video file and caption file as a list on Python.What should I do at the end?import os, globfpath = glob.glob('e:/utorrent/Neon Genesis Evangelion/*.smi')movies = glob.glob('e:/u...

2 years ago

1 answers
91 views
0
To find out how long the program has been running?

You want to create a program that runs only for 3 seconds if you type 3 before you run the program, and for 5 seconds if you type 5.How do I find out how many seconds have passed since the program sta...

2 years ago

1 answers
19 views
0
I have a Python question.

['01', '15 Good Goods \xa0\xa0\xa0\xa0\xa0\xa0', '034252340', '96,000', '814,000', '\n\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa01, '01, '01, '01, '01, '01, '01, '0['']['02', '16 Reco...

2 years ago

1 answers
16 views
0
Python list index out of range error questions

Hello, I am a college student studying Python.While studying Python, I kept encountering the following error and posted a question like this.No matter how hard I think about it, I can't judge what the...

2 years ago

1 answers
119 views
0
If "==" and "is" are different results when comparing strings

Var1 and var2 are storing the same string public var1 is var2 for false,In var1 == var2 , TrueI watched a program that returns.I experimented and now both return True.Why is that?s1 = public!s2 = publ...

2 years ago

2 answers
15 views
0
Unable to load the default py file.

After creating the py file (only print(I'm sold) is written inside the py fileI typed a command to execute a file saved as a Python executableThey say they can't even find the file.I've reloaded and t...

2 years ago

1 answers
156 views
0
Python recursive function Fibonacci sequence

n=int (enter the N value of the Fibonacci sequence F(N) --> : ))) def fibo(n): # Recursive functions require escape conditions. if n < 3 : return 1 else : return fibo(n-2) + fibo(n-1)# Find t...

2 years ago

1 answers
48 views
0
How to put from 1 to the substituted number in the list[] value?

제가 순서 정하기 비슷한것을 만드려고 합니다.If the user enters a value of 5, Numbers from 1 to 5 come out randomly and check your rank. I'd like to write a code to delete the rank from the list [ ].list[ ]Leave the list...

2 years ago

1 answers
16 views
0
Python list->dict conversion question

a=[{'a': '1', 'b': '2', 'c': '3'}]This is the form of the list I receivedCan I change it to dict by erasing the brackets on both ends?

2 years ago

1 answers
13 views
0
Source receiving large integer value output

For example, 17,9,81,31 >> 9813117 You want to make it output like this I put in the values using the list, but I didn't know how to do it afterwardsI have a questionRecognize numbers as letters...

2 years ago
« - 308 - »

© 2024 OneMinuteCode. All rights reserved.