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
101 views
0
When creating a class, how do I compare the class(type) object that is being created in the __eq__ function?

For example, class num def __init__(self,input_parm): self.num = int(input_parm) def __eq__(self, other):In this case (switch the input to an integer and store it as an initialization value)When inp...

2 years ago

1 answers
78 views
0
Python Crawling Questions

I want to crawl the yellow part of the picture. I parsed up to HTML, but... I don't know how to print out the name and valueimport timefrom selenium import webdriverfrom selenium.webdriver.support.ui ...

2 years ago

1 answers
45 views
0
Save copy from selenium to mouse

I entered a specific site with selenium and pressed copy to the right mouse I wanted to save this in a txt file, so I tried many ways, but it didn't work, so I'm looking for help. driver.close()# Righ...

2 years ago

1 answers
79 views
0
Python function coding questions that always run in parallel.(multiprocessing)

Hello, I'm coding Python.Even if you search by yourself and code through trials and errors,I'm asking you a question because something doesn't work out.from time import sleepfrom multiprocessing impor...

2 years ago

1 answers
40 views
0
[Python] I'd like to ask you how to export only certain parts of manifest.xml and save them as a single file.

I'm going to ask you a question using Python I'm looking for a way to create a Python script that automatically saves the storage name of git repository as a single file among the contents included in...

2 years ago

1 answers
73 views
0
A very simple basic of basic Python question...!

School year = input() / print (You entered %s., %s)I'd like to ask if this code is correct!I don't know how to code when I try to print it out like this ㅜ

2 years ago

2 answers
85 views
0
Python requests file POST error (encoding??)

You are about to send a POST request to https://api.telegram.org/bot~~~/sendaudio to send a file to the Telegram bot.URL = 'https://api.telegram.org/bot<...>/sendaudio'VALUE = {'chat_id': '<....

2 years ago

1 answers
42 views
0
[Python] Bug creating in excel file

<bar> <F169 id=F169.777568> <pos>193239.0950999996 456314.7006000001</pos> <X_CRDNT>193239.0951</X_CRDNT> <Y_CRDNT>456314.7006</Y_CRDNT> <PNU>...

2 years ago

1 answers
22 views
0
I'm reading a web-crawling book and imitating it, but it doesn't work when it comes out of the book. An error appears. Please tell me what you mean "T"

import requestsfrom bs4 import BeautifulSoupurl = 'http://jolse.com/category/tonermist/43/'result = requests.get('url')bs_obj = BeautifulSoup(result.content, 'html.parser')print(bs_obj)This is a begin...

2 years ago

2 answers
21 views
0
I solved it

I solved it Thank you

2 years ago
« - 250 - »

© 2024 OneMinuteCode. All rights reserved.