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


2 answers
38 views
0
Python list cross-junction question.

list_n = ['1','2','3','4']list_a = [A,B,C,D]I want to create an array called list_s by adding the above two arrays.Can we cross the array and put it together?The results you want are as followslist_s ...

2 years ago

2 answers
75 views
0
To click only the button for a particular pattern id during Python crawling

If there are multiple buttons with similar IDs, click all buttons and If you don't have the id of that button, you want to create a code that doesn't do anythingIn the case of similar IDs, the front i...


1 answers
23 views
0
[Python] Can I import the string as a variable name?

class item: def __init__(self, name, value=0): self.name = name self.value = valueClassitemRice = item(Rice, 2)tradeItemSelect = [Rice] [#After that, various ingredients...]for i in range(len(tradeI...

2 years ago

2 answers
137 views
0
I want to split on Python several times

0 2003-12-31T15:34:07.200Z1 2003-12-23T00:20:34.800Z2 2003-12-20T12:13:36.300Z3 2003-12-17T04:19:16.400Z4 2003-12-16T09:07:56.100Z5 2003-12-15T18:55:05.100ZWe're going to do 2013, 12, 31, and 15...

2 years ago

1 answers
56 views
0
I want to change the starting position of the explorer to Python.

Coding with Python def explorer(): subprocess.call('explorer')Run the explorer with the The path of the file depends on what you choose, so it is difficult to set the path with an absolute valuepath=...

2 years ago

1 answers
32 views
0
How does the input() function and sys.stdin.readline() work in Python3 to make a big difference in speed?

Baekjun #1717 was being solved. I was solving it using the Disjoint-set data structure, but when I received the input as input(), there was a time-out error, referring to the other minutes, and then s...

2 years ago

1 answers
119 views
0
Find Python List Elements Question

a = [[0, 0], [1, 0], [0], [1, 1], [0, 0], [0, 1], [1], [1, 0], [0, 1], [1, 0], [1], [0, 0], [1, 1], [0, 1], [0], [0, 1], [0, 1]]minn = 1list= [len(x) for x in a]for b in list: if b == minn: print b...

2 years ago

1 answers
121 views
0
Problems with Korean strings with PHP shell_exec

Hello, I had a problem while making it because I thought it would be faster to learn while developing Python for the first time.As the image code below php, shell_exec delivers two factor values to Py...

2 years ago

2 answers
154 views
0
Basic Python question! I'm asking this question because I'm a beginner!

How do you make this into Python chords? I squeezed it like this, but exit keeps getting errors. Help me

2 years ago

1 answers
19 views
0
Is there a way to extract only strings from a specific location?

24332 34 124\n25543 341 456\n45654 9 123 \nFrom text like above 124\n456\n123\nIs there a way to extract only? I want to extract only the rightmost text from the text created by being separated by a...

2 years ago
« - 245 - »

© 2024 OneMinuteCode. All rights reserved.