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
Argument mustard correct style object error occurred in crash handling code.

# Update correct information to handle conflicts character_rect = character.get_rect() #x,y coordinate size information. character_rect.left = character_x_position # It means the outer wall based on t...

2 years ago

1 answers
16 views
0
It's my first time starting Python, but after I type(), I can't print() properly.

After one type() in the middle, the value does not appear in the last print (diary).If you try f.seek(0), you get the same result.I wonder why this is happening.Thank you.

2 years ago

1 answers
26 views
0
Contact Python requests to find out how to resolve the get_text() error

안녕하세요.I'm making a program to crawl with Python.It's a program that crawls the characteristics of a product.rating = search_result.found(div, attrs={class:text-inline-block light average_number}.get_t...

2 years ago

1 answers
16 views
0
I have a question about regular expression pattern extraction

I wanted to extract lovely and real ending with ly from sentence.Doesn't r'\D+ly' become 'repeat non-numeric (\D) several times (+), and find a pattern that ends with ly'?But I wonder why the result w...

2 years ago

1 answers
63 views
0
Questions about how to crawl information to Python only when you refresh the website

안녕하세요.I'm trying to make a code to compare the price of Wine List with the overseas price.I'm using Wine Searsher as a site to check overseas prices, and I'm inquiring because there's a problem.You ca...

2 years ago

1 answers
103 views
0
How do I deliver python requests post --data-raw?

curl --location --request POST 'https://test.com' \--header 'Content-Type: application/json' \--data-raw '{ encrypted:U2FsdGVkX19ETWIFRzm0a/TA8s=}'Linux delivers it like thisWhen I turned it over to P...

2 years ago

1 answers
13 views
0
Is there a way to use Python for loop more efficiently?

with open('Identified Atoms', 'w') as fo: for num, i in enumerate(iden_interfaceAtomA_B): print(f' >>> {num}') for j in iden_interfaceAtomC_D: fo.write( s...

2 years ago

1 answers
14 views
0
What is the role of f in Python?

for i in range(1, 100): print (f'{i}01')It only works if there is f here, so what is the role of f?

2 years ago

2 answers
13 views
0
How do you pick out Python Chinese characters and Roman letters?

I'd like to know how to easily exclude Chinese characters and Roman characters such as 같은 from strings such as isalnum.ExampleGanada-abbc-123 Kim's Gimbap => Ganada ABC 123 Kim's GimbapOrGanada...

2 years ago

1 answers
17 views
0
Could you tell me that Python Dictionary will return the key value that meets the conditions?

Can we find a value that meets the condition and return the corresponding key value to make it a list?For example, listA = year = [1950,1951,...,2018]listB = index = [value1,value2,...,value69]I made ...

2 years ago
« - 399 - »

© 2024 OneMinuteCode. All rights reserved.