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
16 views
0
Can't you read the csv file from Django and express it on the web?

I'd like to read the csv file using the dejango and deliver the print value to the html file to print it out as a web framework, is it possible?

2 years ago

1 answers
70 views
0
I want to save the sensor value as strquery in mysql with Python, but how can I solve the problem that only '0' is stored in mysql although the sensor value is output from the terminal?

The sensor value measured by Arduino is sent to Raspberry Pi via Bluetooth, and Raspberry Pi receives the sensor value by Python and tries to save it in mysql. As mentioned in the question, when you r...


1 answers
18 views
0
Wxpython, here'

I wrote the code up to putting data into sqlite3 using wx.combo, but when I closed the program,I need to enter the combo box again, so I want to know how to load the value in db into the combo box I e...

2 years ago

1 answers
17 views
0
[Python] I want to create a code that only works for a certain period of time.

Hello, I'm a beginner at Python. I'm trying to create a code that works for a specified period of time or only for a specified period of time as the title suggests, but I don't know how to use the tim...

2 years ago

1 answers
68 views
0
Repeating statements do not properly delete items in the list.

The code below is a function anti_vowel that removes all vowel alphabets (aeiouAEIOU) from the string. I expected it to work properly, but if you give the sample value of Hey look Words! as an input v...

2 years ago

2 answers
122 views
0
[Python] I have a question about sentence search and saving!

Assume that spring=summerfallautumnwinter is in the text file.a = spring=summerfallautumnwinterIn this part a = spring = (English sentence) Summer fall early autumn winterExcept for spring and quotati...

2 years ago

2 answers
156 views
0
Load data from Python files into a list

I'd like to bring the file (data.txt) that has the following data to the list and process it.[skkim@master test]$ cat data.txt 0.3677630.3358440.3338430.3334080.07418670.01891320.001191960.006764490.0...

2 years ago

1 answers
44 views
0
I would appreciate it if you could tell me how to solve these syntax errors.

Hello, I'm a first-time Python student. It may be a very easy question, but I'm posting it here because I'm not very good at searching and understanding.Here's the whole story of views.py I wrote.def ...

2 years ago

1 answers
117 views
0
I'd like to crawl on Python, but I'm not sure about the browser type.

I'm going to make a crawler that collects and stores pictures of Cyworld.However, Psy asked for IE 9.0 or higher or a browser such as ChromeCrawler can only see that browser's upload recommendation.Is...

2 years ago

2 answers
50 views
0
To convert files in rows into columns in Python or Excel

There are files in Python or Excel with rows.For example:Name Kim Jun Name Reason Name of Kim Pie Gender male Gender Men File recorded as above Name: Kim Jun Yiyu Kim Pie sex a person a man.Is there a...

2 years ago
« - 211 - »

© 2024 OneMinuteCode. All rights reserved.