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


2 answers
16 views
0
Get a system of equations with Python

I'd like to make a program with Python to solve the problem of a coalition equation, but I'm a beginner, so I'd appreciate it if you could show me an example of the program

2 years ago

2 answers
90 views
0
a

.

2 years ago

1 answers
14 views
0
I'd like to ask you a question about the Python string formatting decimal pointPlease let me know

>>> a=10>>> b=20>>> a/b is %0.6f%(a/b)'a/b' is 0.500,000'>>> a/b is %.6f%(a/b)'a/b' is 0.500,000'a/b is 0.500000 comes out What's the difference between making the ...

2 years ago

1 answers
72 views
0
[Python Unicode SyntaxError] I'd like to know how to solve the error caused by "\U".

#encoding = utf-8from selenium import webdriverfrom bs4 import BeautifulSoupdriver = webdriver.Chrome (\Users\choi\chromedriver_win32)driver.get(https://mensaar.de/#/menu/sb)bs = BeautifulSoup(driver....


1 answers
15 views
0
Question about the product of Python variables

I'm a student who is studying Python for the first timeThere is a difficult part, so I would really appreciate your help.The value of 10 20 30 40 50 is Based on the number of cases of ABC de (5 factor...

2 years ago

2 answers
18 views
0
It's a Python question.

I even converted the contents of English or special characters in the text fileI don't know how to convert numbers into Korean.If it's a job position, I'll just put it in as below. Since the back of t...

2 years ago

1 answers
22 views
0
SyntaxError: invalid syntax occurred on Python. I'm going to search for English words on Python

error File /home/testcode/tmp/main830.py, line 15 give ^SyntaxError: invalid syntaxIt comes up like this. The chords are as follows.url = 'http://dic.daum.net/search.do?q='word = 'hate'import requests...

2 years ago

1 answers
70 views
0
I'm doing it with the os.popen function in Python, but it doesn't work. Help mecrying

import osdef run(command): file = open(tmp.py, 'w') file.write(command) file.close() res = os.popen(sudo python3 tmp.py -f).read() return resres = run (Hello)print(Result+res+)So, this is how we built...

2 years ago

2 answers
75 views
0
I'd like to change the one-dimensional list to json form.

a.pydd=['norm9_ab1', 'dataset-hdf', 'audio', 'csvfile', 'saveHDF', 'backend_test', 'keras-adversarial', 'pathconnect']filelist=[]i=1while i < len(ddd): filelist.append('\'+str(i)+'\:'+'\'+ddd[i]+'\...

2 years ago

1 answers
18 views
0
I want to know how to connect HTml with Python.

These days, I'm trying to produce a program that works on kiosks like an unmanned system. The operating system is Windows and the language is Python, but if you use Python Gui, it doesn't look so good...

2 years ago
« - 219 - »

© 2024 OneMinuteCode. All rights reserved.