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
72 views
0
Python Crawling Questions

url = 'http://openapi.molit.go.kr/OpenAPI_ToolInstallPackage/service/rest/RTMSOBJSvc/getRTMSDataSvcAptTradeDev?LAWD_CD=11110&DEAL_YMD=201512&serviceKey=nusYWKb7yOPt65dtNy3%2B67YdtP%2FguoXg8iVg...

2 years ago

3 answers
17 views
0
Modify Python String Clear the last part of the IP

I want to extract the ip address and erase only 555 parts when 123.456.789.555 comes out, but 555 can be two or three digits, and it's not a fixed number, so I don't know what to do with it

2 years ago

1 answers
21 views
0
Question on how to create a function that returns the first two characters of Python!

How can I make a function that takes the month and returns the first two characters?def abbreviation():Should I use len?>>> abbreviation( 'March')'Ma'How can I print it out like this?

2 years ago

1 answers
167 views
0
Python Beautiful Soup Web Page Option Information Crawling

HTML information.<div class=:selectScroll> <div class =wrap> <div class =box id =option_all_view_area> <a class = optionLine name =opt_select optprdno=7042309496> <div cla...


1 answers
77 views
0
C#, execute Python code on VB

Hi, how are you?I want to make a GUI version of the code made with PythonI thought it would take too long to make it into PYQT. I'm going to make it into C# or VB.The problem is that the core function...

2 years ago

1 answers
53 views
0
re.compile and findall keyerror: 0 I have a question.

1) Only the title is extracted from the data frame df_movies2 in the figure == movedata2) Only values in the format (four digits) are taken from the movedata.3) I want to save this value in a list for...

2 years ago

1 answers
21 views
0
Question how to modify a specific string in a text file

Hello, mastersFirst of all, what I'm curious about is that I need to modify certain strings in a text file, and I wonder if there is a proper default source code that I can use.The picture above is a ...

2 years ago

1 answers
24 views
0
Python Execution Related

If I make a program with Python and run it, and then I make a code,Is there a way to apply it even if I don't turn it off and on when I don't have to turn it off and on

2 years ago

1 answers
144 views
0
Python Stack Question!

Hello. I'm implementing a calculator using a stack.If you enter only integers now, the problem is saved to the list as a string. ex) 1+2/3 [1,+,2,/,3]But I'm asking you a question because I'm trying t...

2 years ago

1 answers
123 views
0
How to kill Python prettily by multiprocessing

I would like to utilize multi-core in a Windows environment other than Linux.If you accidentally interrupt, only the main process will be interrupted, and the rest will continue to spin like an infini...

2 years ago
« - 354 - »

© 2025 OneMinuteCode. All rights reserved.