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
41 views
0
When I took out mysql's data from centOS to python, Hangul is a question mark?How do we solve what's written as

CentOS locale information is as follows LANG=ko_KR.UTF-8LC_CTYPE=ko_KR.UTF-8LC_NUMERIC=ko_KR.UTF-8LC_TIME=ko_KR.UTF-8LC_COLLATE=ko_KR.UTF-8LC_MONETARY=ko_KR.UTF-8LC_MESSAGES=ko_KR.UTF-8LC_PAPER=ko_KR....

2 years ago

1 answers
13 views
0
Python: If you have multiple json files, is it possible to read them all?

I'm studying Python these days I'm studying the json writing, reading, and writing part in Python, and I know the part where I read one json file and get the value inside, but if there are several jso...

2 years ago

1 answers
13 views
0
When reading a Python binary file, how do I repeat it to the end of the file?

How do I repeat a Python file to the end of the file when I read it in binary mode?​f = open(file, 'rb')fw = open(file1, 'w')temp = f.read(10)slen_temp = f.lead(4)slen = int.from_bytes(slen_temp, byte...

2 years ago

1 answers
17 views
0
We're going to take three consecutive integers and multiply them in order to get the cumulative product and print them out

Integer:2Cumulative product:2Integer: 4Cumulative product: 8Integer: 6Cumulative multiplication:48I'm trying to print it out, but I don't know how to code it Please help me

2 years ago

1 answers
78 views
0
I want to make Arduino's sound sensor recognize clapping with Python, but there is a difficulty in the middle

I'm coding so that the LED is turned on at Arduino with Python.It's coded to respond to clapping at once, but the problem is that if you do this, it responds to other noises.So I want to respond to a ...

2 years ago

1 answers
45 views
0
How to bundle and execute commands using && on Linux

If you enter command 1 && command 2, command 2 is executed after command 1 is completed, right?Then [Command 1, Command 2, Command 3] && [Command 4, Command 5, Command 6] In this way, ...

2 years ago

2 answers
15 views
0
Three numbers that make the Python sum 10

I'm writing Python code and I'm thinking about how to approach it, so please give me your opinion. I'd appreciate it if you could give me a direction.The code objective is to match the set value set_p...

2 years ago

1 answers
85 views
0
Python Beautiful Soup select result is strange.

I'm practicing Python crawling, and I'm collecting sections from Naver's integrated search as follows.If you search with the following code, there should be 9 words for section, but there are only 2 w...


2 answers
39 views
0
Python) How do I convert float type to string when I create json file?

We are working on code to convert excel file to json file.In the meantime, the part that needs to go into the string is float type, so I'm having a hard timeI don't know how to change float type to st...

2 years ago

1 answers
35 views
0
Is there an OPEN API that can receive data by city, county, and district among the domestic COVID-19 status data APIs?

When I visited the sites of each city, county, and district, they showed the current status of COVID-19.Where can I get the COVID-19 OPEN API, which is statistical by city, county, and district?It was...

2 years ago
« - 391 - »

© 2024 OneMinuteCode. All rights reserved.