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
60 views
0
You want to extract a value of a specific condition from a data frame.

You want to extract values from a data frame based on specific conditions.loc = pd.read_csv(./inference/output/temp.txt, sep= , header=None)loc = loc.drop([5], axis=1)loc.columns = [classID, x, y, wid...

2 years ago

1 answers
12 views
0
ModuleNotFoundError: No module named 'utils.utils' error

Hello. I'm asking you a question because an error suddenly occurred in the module import.from utils.utils import *If you import the module as shown in Traceback (most recent call last): File <input...

2 years ago

1 answers
10 views
0
[Python] Web screen capture

I want to capture web screen every time and save as the desired file name . I still need to study a lot about Python, but I've looked through a lot of documents I'm asking this question because I thin...

2 years ago

1 answers
70 views
0
I want to make the text disappear from pygame pie game

I'm making a pie game.If you get points while playing the game, you move on to the next game, and there's still a text about the score.I'm asking you a question because I can only see the text floatin...

2 years ago

1 answers
16 views
0
How to terminate a function in the middle when threading Python

import timefrom threading import Threaddef func1(off): while not off: for i in range(0,100): print (i) time.sleep(1)def func2(): total=0 for i in range(0,30) : total += i time.sleep(0.5) if tota...

2 years ago

2 answers
108 views
0
I have a question dealing with Python Low Data!!

First of all, it's a warm txtThe contents of the data are raw data and are all contained in one row of Excel 1 row 9 columns. Filming materialsFilming station = xxInstallation Location = xxxxxxxxxxxxx...


1 answers
15 views
0
Are there any Python controls like this?

Among control statements Executing each command according to the conditions through various conditions It's an if door, elif door, else doorHowever, you execute a command with one conditionIt's done i...

2 years ago

1 answers
14 views
0
In the algorithm to obtain the mineral water,

def count_factors(num): loop=num**0.5 # # for square number if loop==int(loop): count=1 else: count=0 i=1 while i<loop: if num%i==0: count+=2 i+=1 return count Why do we count +2 in the functi...

2 years ago

1 answers
46 views
0
I want to know how to divide only the numbers in the Python string.

I'm coding with Python. Hong Gil-dong 1,200,000 won, Lim Kkeok-jeong 3,000,000 won, and Jang Gil-san 6,000,000 won only the amount that appears in the string divided by half Honggil-dong KRW 600,000, ...

2 years ago

1 answers
56 views
0
Is it possible to say that the web crawling using the package has also built a crawling system?

A student used Getoldtweet3 to crawlHe built a crawl system using Python himselfIn this case, should I say that you built it yourself?

2 years ago
« - 379 - »

© 2024 OneMinuteCode. All rights reserved.