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
348 views
0
"Beautiful soup" question!

Hi, everyone.I'm leaving a question because I got stuck while crawling Python.We found a specific class and found the value below.stock = soup3.find('div',{'id':'layout_config_full'})#Result<div cl...

1 years ago

1 answers
369 views
0
Data crawling question!

I'm practicing crawling the store information (store name, address, number) of Goobne Chicken and saving it as a csv fileGoobne Chicken's web structure (tags) is getting stuck because I don't understa...


1 answers
420 views
0
python —Something is wrong with the standard deviation.

Assume you are given an array that shows the following percentages:test=np.array([1.0, 1.0, 1.0, 0.8571428571428571, 0.7142857142857143, 0.8571428571428571, 0.8571428571, 1.0, 1.0]) * 100If you calcul...

1 years ago

1 answers
307 views
0
Is it possible to increase the arguments by looping in Python?

I use Python 3.10.2 and selenium.The flow is to enter the product code, scrap the displayed inventory, and save it to CSV, but as the number of products has increased, I would like to change it to loo...

1 years ago

1 answers
322 views
0
When creating the Python Tkinter GUI, icon files cannot be read correctly after setting the icon image twice.

During the GUI creation procedure for the tkinter library, when setting the window icon, What is wrong with the image loading error when I write down the icon specification twice?Usually, it is said t...

1 years ago

1 answers
363 views
0
I want to change from string to date type in Python

Use the code below to I'd like to change from a text string to a date type, but It will be in a different format.How do I format the same date?What you want to achieveSave the text string to Excel and...

1 years ago

1 answers
328 views
0
Canvas on Tkinter has NameError

Python 3.9.5 64-bit Windows 10 Home Currently, I use Tkinter to read PDFs and create tools to edit (rotate, split, save, etc.).In the middle of that, I would like to write a code saying that clicking ...

1 years ago

1 answers
363 views
0
Canvas on Tkinter has NameError

Python 3.9.5 64-bit Windows 10 Home Currently, I use Tkinter to read PDFs and create tools to edit (rotate, split, save, etc.).In the middle of that, I would like to write a code saying that clicking ...

1 years ago

1 answers
296 views
0
I want to change from string to date type in Python

Use the code below to I'd like to change from a text string to a date type, but It will be in a different format.How do I format the same date?What you want to achieveSave the text string to Excel and...

1 years ago

0 answers
427 views
0
Sort Python String Order

How do I arrange strings regularly in Python in the order I want them to be?For example, if the order you want is 1423, iloveyoutooo =>ivloeuyotoooLike this+So you cut 4 pieces and arrange them in ...

1 years ago
« - 30 - »

© 2024 OneMinuteCode. All rights reserved.