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
43 views
0
How to save Python output as an Excel file.

I want to get a code that automatically saves the output value in Excel by running PythonOn the Internet, there is a way to automatically save the value of notepad in ExcelIs there a way to just save ...

2 years ago

1 answers
19 views
0
Write the letter after the last letter in the row with a specific character

I'm a beginner trying to use Python.You are about to modify the txt file with Python.For example, .... Previous row 2019 Statistics (Statistics Office) 25 —- Subsequent rows If it says so,2019 -> \...

2 years ago

1 answers
82 views
0
html crawling

I want to crawl the words and meanings from the urls that were created by changing the last number, but I don't know how to set the range because the beginning of the number is 000. Is there a way?

2 years ago

2 answers
41 views
0
To make a Python 2D list into a json file

It's been 3 days since I studied Python. There's a lot I don't know.I want to make a sawtooth 2D list into Json, so how should I do it?[ ['900', '196', '196', '192', '57'], [After 1 Minute, After 12 ...

2 years ago

1 answers
50 views
0
Differences between Interactive Mode (IDLE) and running as a file on Python?

a='Lee'a.upper()a.find('e')When you run an interactive line-by-line in IDLE, you run a line-by-line and the results appear immediately.In the example above, the result a.upper() is LEE, and a.find('e'...

2 years ago

1 answers
98 views
0
Python bs4 and requests library dynamic page crawling question!

I am a beginner who has studied Python for a month.Using requests and Beautiful Soup libraries, Coupang, Wemakeprice, and Timon sites search for products in the lowest price order and are tasking to m...

2 years ago

1 answers
143 views
0
[Python] Indent question when using if (first time coding)

I'm trying to determine if I'm overweight and underweight by BMI index. if BMI<18.5: print(Your BMI indicates that you are underweight.) if BMI>25: print(Your BMI indicates that you are overwei...

2 years ago

1 answers
131 views
0
Question about the range of Python variables

a=0def vartest(a): a=1 return aprint(vartest(a))Why is it said that a is not defined when a=0 is cleared? Since a in the function and a outside of the function are different variables, we defined a=1 ...

2 years ago


1 answers
45 views
0
I'm creating a login automation code for the site I signed up for Python Selenium, how do I check if I have an Internet connection?

Creating a login automation code for the site you subscribed to Python Selenium.By the way, if you try to log in while the Internet is not connected, an error will occur. In this case, check the curre...

2 years ago
« - 247 - »

© 2024 OneMinuteCode. All rights reserved.