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
243 views
0
Unable to display list

I want to calculate and display the value multiplied by 2 in the list I created, so I wrote the following code, but I can't do it well.What should I do? numbers = [1,3,5,7]for n in numbers*2: print(n)...

2 years ago

1 answers
354 views
0
Error using defined function: cannot unpack non-iterable NoneType object

Define the function as follows and write the code for the quotient and remainder of n/k.defquotient_and_remainder(n,k): quotient==n//k remainder == n%k print(quontient, reminder)quote,remainder=quo...

2 years ago

1 answers
274 views
0
FileNotFoundError: [Errno2] No such file or directory: 'in_out_put/live_data.csv' How do I work?

I was doing an AI program on jupyternotebook in anaconda.When I was loading the following tasks, I got an error and I am having trouble.I am a beginner with no program experience.Please let me know.Th...

2 years ago

1 answers
284 views
0
Can I create a sub-window with a sub-window as the parent in Toplevel() of Tkinter?

Tkinter's Toplevel() allows you to create a sub-window with the main window as the parent, but is it not possible to create a sub-window with the sub-window as the parent?Please let me know if there i...

2 years ago

1 answers
207 views
0
Program error in summary in python: Resource punkt not found

I'm in trouble because I don't know how to deal with this error.Please let me know.[Error] 0% | | 0/2 [00:00<?,?it/s] 0 0% | | 0/2 [00:06<?, ?it/s]-----------------------------------------------...

2 years ago

1 answers
490 views
0
I want to get url of the site that was opened on a separate tab by web operation using selenium.

After opening the web in selenium, the user tried to get the url of the page opened by operating it. from selenium import webdriverimport timebrowser=webdriver.Chrome('chromedriver.exe')browser.get('h...

2 years ago

1 answers
289 views
0
What can you make python mainly? [Closed]

Do you want to improve this question?Update your question, Edit this post to be answered with facts and quotes.Closed to 10 months ago10 months agoI want to know what I can make with python.Please.

2 years ago

2 answers
274 views
0
If you include else in python, you get an error.I don't know how to deal with it at all.

Regarding the program like this, the else seems to be strange.When I try to run it in the terminal, it says SyntaxError: invalid syntax.Please let me know the solution.a=input(Enter a number.a = a = i...

2 years ago

1 answers
420 views
0
I would like to know the Python version of Google Colab as of December 2021.

Does anyone know about the Python version of Google colab as of December 2021?I remember that the current version was Python 3.7.12 and it was the same at the time, but I cannot confirm the informatio...


1 answers
309 views
0
How can I correct this error? TypeError: 'NoneType' object is not subscriptable

I am currently using the gps module and would like to extract the latitude and longitude data. However, when you run the program, it appears OK at first, but at some point it stops and displays this e...

2 years ago
« - 40 - »

© 2024 OneMinuteCode. All rights reserved.