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
30 views
0
Python character arithmetic calculation

I'm a beginner at Python, so when you say text = 0, shouldn't text + 500 be text = 500? It keeps saying text = 0, so I can't mark the score.

2 years ago

1 answers
117 views
0
I have a question about implementing Gui using pyqt4.

First of all, there is a sauce that is salty from Python using opencv. The content of the source is, roughly speaking, the source that reads the image img, finds a square inside the img, and recognize...

2 years ago

1 answers
89 views
0
Please help me to click on Google's favorite site with Python selenium

url = 'site url'driver.get(url)# I'll connect it like thispage = driver.page_sourcehtml = BeautifulSoup(page, 'html.parser')find_tag = html.findAll('h3')# h3 tag is the name of the sites that are expo...


1 answers
21 views
0
I have a basic question for Python. Notice? How do you see it?

If you write print in Python cells or an idle (it appears as a yellow box below) It comes up and sometimes it doesn't come up, but what's the standard?

2 years ago

2 answers
96 views
0
I have a question about the direction of the Python cord.

If you enter an integer, you want to write a code that you want to represent as a sum of three decimal places.Example) 10=2+3+5Currently, I wrote the most basic decimal discrimination function and the...

2 years ago

1 answers
83 views
0
There's a Python error, but I can't solve it

I keep getting errors like this, but I don't know what to do.


1 answers
153 views
0
Questions about Python __init__() and super()

I'm studying super()What is the difference between ChildA() and ChildB() in the code below?class Base(object): def __init__(self): print Base createdclass ChildA(Base): def __init__(self): Base.__in...

2 years ago

2 answers
78 views
0
How to crop Python strings

For example, a = QWASDFGHJKIf there is a string like this, how do I print out ASDF and GHJK separately, excluding QW?

2 years ago

1 answers
135 views
0
Why do you put "b" in front of the string?

my_string = b'The string'They put b in front of the string like this, and I wonder what it means, what influence it has, and when it is used.

2 years ago

1 answers
58 views
0
This is a question for uploading photos of Python Web Server!

http://flask-docs-kr.readthedocs.io/ko/latest/patterns/fileuploads.htmlI coded the contents on this page, but I don't know which address the picture is sent to.The programming I'm trying to do is to t...

2 years ago
« - 256 - »

© 2024 OneMinuteCode. All rights reserved.