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
15 views
0
I want to get the sum of terms that put each element inside the list into a specific function f(x) in order.

List = [element1, element2, ....., elementn ]When there's a list like thisx0 = List[0]x1 = List[1]x2 = List[2].....Like xn = list[n]Xi = list[i] After each element of the list corresponds to the varia...

2 years ago

1 answers
102 views
0
I have a question about saving Python 2.x version in Excel.

Hello, I'm an office worker who just started learning Python.I am studying with the goal of automating Excel using Python, and I am writing because I have a questionFor example, I read Hello Python Wo...

2 years ago

2 answers
14 views
0
I want to get the name of the click button when the Python click button event occurs.

I want to get the name of the button to know which button was pressed when the button was pressed.Press button -> After passing button name to TextReadBT -> TextReadBT wants to check which butto...

2 years ago

1 answers
90 views
0
What should I do when I want to find the location where the Python print is printed?

I have imported a lot of Python libraries and have been using theminit of any file during error correction.I accidentally copied print 'en' to py and pressed the wrong key to turn off the file window....

2 years ago

1 answers
46 views
0
Please help me with the django image problem

I want to put an image in the html file using img src=img/background.jpgWhat should I do because it keeps appearing on the screen as Ex-Park?

2 years ago

1 answers
134 views
0
Python Web Crawling Login Question!

import requestsfrom bs4 import BeautifulSoups = requests.Session()req = s.get('http://www.filesun.com/')LOGIN_INFO = { 'user_id': ' ', 'password': ' '}with requests.Session() as s:login_req = s.post('...

2 years ago

2 answers
18 views
0
Python As you continue to increase your value, I ask you a question.

For example, raising the spinbox gui value. 50 150 200 250... The price should go up and down based on 50... (like the +- button on the shopping mall)I don't know if it's because I made the wrong chor...

2 years ago

1 answers
70 views
0
Is there a way to execute the Python code stored in the form of a string?

Is there a way to execute the Python code stored in the form of a string?I thought my friend told me I could do it, but I didn't listen because I thought I didn't need it ㅜ

2 years ago

1 answers
101 views
0
I turned the Python example code while trying Google Cloud Speech API, but there is an error!!!!!(Crying)

Hello, everyone The final goal is to apply real-time STT to Chrome extension programs using voice recognition APIs.I kept looking for the voice recognition API, but it was judged that I could not acce...

2 years ago

1 answers
42 views
0
PYTHON code questions.

imgurl1 = ['https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRBq9ME-DAgKNLb_pf4BuLIPesmc2dU_FXR_1Pr52exF1P7y8Sv','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRo3WzmJo3VnwIJ6wRts3gfyvTA...

2 years ago
« - 275 - »

© 2024 OneMinuteCode. All rights reserved.