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
71 views
0
I have a question because the input() function is weird.

HelloIt's Corinne.I'm studying Python while watching the Fast Campus web development lecture, but the input() function doesn't move as I want, so I'm asking you a question.I downloaded the version of ...

2 years ago

1 answers
51 views
0
Is there a way to import hidden data into a data frame format?

Hello, I'm a beginner at Python.I'm trying to get the data from the web pageOf all things, the necessary data is in the form of a hidden account.First, I'll upload the code.from urlib.request import u...

2 years ago

1 answers
78 views
0
There is data missing when crawling by combining multiprocessing and multi-threading. How can we solve this?

Crawling using multiprocessing, treading, beautiful soup, and requests results in a list index out of range error or none type has not attribute text error.import requestsfrom bs4 import BeautifulSoup...


2 answers
22 views
0
[Python] Share and the rest - Cloud LEVEL Problem Difficulty 1

Enter two positive integers and divide the number you entered by the number you entered laterWrite a program that outputs the quotient and the remainder in order.Enter: a, boutput: Divide a by b, and ...

2 years ago

1 answers
122 views
0
get_loc keyerror occurred during coding for networkx use

for connection_id, connection in connections.iterrows(): station1_name = stations.loc[connection['station1']]['name'] station2_name = stations.loc[connection['station2']]['name'] graph.add_edge(statio...

2 years ago

1 answers
44 views
0
I'm trying to get the dictionary value of T-map API json result with Python, but it doesn't work

Hi, how are you?Using anaconda, T-map API was imported from Python as a request for json, and it was saved in dictionary form. I want two values here, but it's hard to get them. What did you type wron...

2 years ago

1 answers
46 views
0
Python Grouping (groupby)

Attempt to retrieve the maximum/minimum value of the dataframe using the groupping function.I don't think the code is wrong, but I wonder why the error occurs.class_group=df.groupby('Pclass') # Groupi...

2 years ago

1 answers
13 views
0
How to extract data except for None in db.

for c in db.fruit.find({'Value': 5}): print(c['fName'])In db.fruit,Fruit names (fName) andEach fruit contains an integer value between 0 and 5.(If you haven't evaluated the value of the product yet, l...

2 years ago

1 answers
15 views
0
Python rear-end calculator

class Stack: def __init__(self): self.list = list() def push(self, data): self.list.append(data) def pop(self): return self.list.pop()class Calculator: def __init__(self): self.stack = Stack() def...

2 years ago

1 answers
90 views
0
Python Web Scraping Error

I have a question regarding Python error.I'm trying to get data through web scraping, but I made an error when I tried to code it in the way below.What should I do?I'd appreciate it if you could answe...

2 years ago
« - 402 - »

© 2024 OneMinuteCode. All rights reserved.