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
333 views
0
What is the cause of the error SyntaxError: invalid character identifier [Duplicate]

(Two answers) 10 months agoCould you tell me the meaning of this error and how to improve it?

2 years ago

2 answers
371 views
0
Identifying File Names Retrieved and Saved by Selenium

I was able to automate Chrome with Ubuntu+Python+Selenium and click the Save button to save the file locally, but this file name cannot be controlled manually and the site from which I got it becomes ...


1 answers
329 views
0
Interpreting that the counter value of python for loop cannot be changed in the middle

It's simple, but for example, to output 0,2,4,6,8... and even numbers, I thought of the following code:for i in range(10): print(i) i=i+1However, the output of this result is 0, 1, 2, 3, 4, 5, 6, 7, 8...

2 years ago

1 answers
314 views
0
SyntaxError: invalid syntax error when copying and executing introductory code

I'm a python beginner. I'm learning while copying the code from Python's introductory book, but I got an error and I can't proceed.I would appreciate it if you could tell me how to resolve the error.T...

2 years ago

2 answers
302 views
0
How to draw a line graph with matplotlib

Please tell me how to draw a graph for the following problems!!Using for statement, range data: x = [1,2,3,4,5,6,........496,497,498,499,500]y = [sin(1), sin(2),..............sin(499), sin(500)]Draw a...

2 years ago

1 answers
218 views
0
Need for initialization methods in Python classes

It may be amateurish, but I don't really understand the need for the initialization method.Even if I read books, I don't feel satisfied with just the methods and variables defined in the class first.F...

2 years ago

1 answers
314 views
0
I want Windows to get the file update time (same as in Explorer)

st_mtime in os.stat seems to change to the time when it was copied.Is there any way to get the same update time as the explorer display?Note: I'd like to make an update comparison of my work, so I'd l...

2 years ago

2 answers
223 views
0
What is the definition of the word operator? (Python, another language)

In Python, = is not an operator It is said that So what is the definition of the word operator?I would appreciate it if you could tell me both Python and other languages.

2 years ago

1 answers
325 views
0
Advantages and disadvantages of standardization, normalization, and robust scaling

As you can see in the title, I understand what standardization, normalization, and robust scaling are, but I would like you to give me specific examples of the advantages, disadvantages, and when and ...

2 years ago

1 answers
416 views
0
About append in for statements

I'm a beginner for about 3 days for python programming.This time, I am trying to do web scraping at Python Selenium.If you have any questions, I am sorry.What do you want to donext_page_url_all → Get ...

2 years ago
« - 45 - »

© 2024 OneMinuteCode. All rights reserved.