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
18 views
0
Baekjun 10998 question (Python)

Take two integers A and B and write a program that outputs A×B.Output A×B on the first line.a,b = input().split()a = int(a)b = int(b)print(a*b)I'm a beginner who solved question 10998.I wonder why the...

2 years ago

1 answers
16 views
0
The result is false in the conditional statement (==) that determines whether the text imported from appium is the same as the previously declared value.

I am automating the Android APP app UI with appium. It turns a conditional statement that determines whether the text obtained from appium and the declared value in the script are the sameContinue to ...

2 years ago

1 answers
19 views
0
Python print comma

I have a question in Python print.When printing and printing as follows,I understand that it says 10 aaa, but it is printed as shown in the picture below.Does anyone know why?

2 years ago

1 answers
17 views
0
Python enumerate for statement question

Hello, I'm parsing NAVER shopping products When I searched for the product first, I have parsed the number of pages and the name of the url shopping item And I wanted to see what rank I was in I used ...

2 years ago

1 answers
15 views
0
Python TypeError: 'int' object is not callable

I'm Corinne, and I've never done coding before.I have to use datetime to call up the time and make a program that changes the greeting depending on the time, so what's the problem?

2 years ago

1 answers
107 views
0
Python QlistWidget Questions

Hello, I looked up a lot through Google, but I don't know, so I'm posting a question with open(text.txt, r,encoding='UTF8') as tf: lines = tf.read().split(',') for line in lines: self.listWidget.a...

2 years ago

1 answers
17 views
0
Python return function question.

I looked it up, but I don't understand why it's not working def get_amount_by_keyword_id(self,keword) : uri = '/ncc/keywords' method = 'GET' r = requests.get(BASE_URL + uri, params={'nccAdgroupId': se...

2 years ago

1 answers
18 views
0
Python qyqt multiprocessing questions

Hello, there is something I need to do repeatedly through the for statement It's a little slow, so I found out that the Gui program is a multi-process that runs all at once I don't have a clear exampl...

2 years ago

1 answers
116 views
0
I'm trying to crawl the website, but I can't proceed because of the HTML error.

import urllib.requestfrom bs4 import BeautifulSoupurl = 'https://kr.iherb.com/search?kw=21st%20century'html = urllib.request.urlopen(url).read()soup = BeautifulSoup(html, 'html.parser')address = soup....

2 years ago

1 answers
15 views
0
How not to write Python text because it's lagging?

First the code is self.rank.textChanged.connect(self.textch)def textch(self): items = self.listWidget.selectedItems() for item in items: item.setText(item.text()+'('+self.rank.text()+'etc')It looks...

2 years ago
« - 447 - »

© 2024 OneMinuteCode. All rights reserved.