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
100 views
0
I want to create a continuous variable in Python at once.

I want to create a program that uses openpyxl to transfer data from the original Excel file to the new Excel file. Only 100 rows per Excel file should be included in the new Excel file, but the origin...

2 years ago

1 answers
119 views
0
Python decoding question. UnicodeDecodeError 'utf-8' codec can't decode byte 0xb5 in position 3

I'm making a shell out of Python.import osfrom subprocess import check_outputprint(check_output(dir, shell=True).decode('utf-8'))It is a program that returns and prints the returned value when you ent...


1 answers
109 views
0
How do I make all Python strings case?

a = hoHohoTheHOHOHOMyhohohoIs there a function that changes to?I think there's something else besides turning the for doorPlease let me know


1 answers
50 views
0
[python]Remove last character

After receiving the data in the word variable in the following code, enter the character Q and exit You are about to print out the data you received.If I run this code, it will output up to Q, so how ...

2 years ago

1 answers
43 views
0
The data parsed using Python selenium is not output by the html code itself.

//from bs4 import Beautiful Soupimport requestsfrom selenium import webdriverfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.common.action_chains import ActionChainsfrom urllib....

2 years ago

1 answers
45 views
0
django and character set

Hi, everyone.When deleting data from django, in the column in Korean, (1366, Incorrect string value: '\\xED\\x85\\x8C\\xEC\\x8A\\xA4...' for column 'object_repr' at row 1)An error occurs. Mysql's DB a...

2 years ago

1 answers
87 views
0
What should I do if 403 errors occur even if I add headers when using Python requests?

whoscored = 'https://www.whoscored.com'headers = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36', 'referer' ...

2 years ago

1 answers
51 views
0
Python idle execution error

Python idle didn't work, so I ran idle.py in the idle folder and it came out like this If you reinstall Python, it will print out the same thing.Is there a solution?

2 years ago

2 answers
12 views
0
How to get data from Excel file Python

I'm a beginner at Excel and PythonI don't understand why you call the Excel file PythonHow do I organize the code to extract, store, and use only the desired row or column?

2 years ago

1 answers
139 views
0
How many classes should I put in one file?

In Java, I only put one public class in one fileI don't know what to do with Python.Some modules have only one classThere's a lot on some modules.What is the standard for making a module in Python?

2 years ago
« - 336 - »

© 2024 OneMinuteCode. All rights reserved.