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
101 views
0
To compare strings regardless of case

What is the best way to compare strings regardless of case?hello python!HELLO PYTHON!Hello PYThON!I'd like to say that's all the same.Please tell me the most Python-like chord


2 answers
106 views
0
Find out which window the user is currently looking at with Python

I'm making a keylogging program with Python for learning purposes.I've already finished hooking up the keyboard to get the input value, but I can't even get the function or module I need to get the na...

2 years ago

2 answers
16 views
0
[Python/Intermediate] Is there a way to turn the for door more than once?

For example, for i in range(10) : for v in range(10 ) : for k in range(10) :It doesn't overlap like this. Can't you put it in a neat?for i, v, k in range(10), range(10), range(10)I tried it just in c...

2 years ago

2 answers
42 views
0
How to package django

I don't know how to package djangoI learned it from the recommended placesI don't know how to use the package or library, so even if I look it up on YouTube, I don't know at all because they're all fo...

2 years ago

2 answers
14 views
0
Open file with Python. Question

Enter ping to CMD and save the value as txt Open the txt file with Python and open After finding a specific value using the find in the txt file, I'm going to compare the first and second values, but ...

2 years ago


1 answers
176 views
0
I'm curious about Python curling using selenium.

I'd like to use Selenium to read comments from Naver News.Currently using Python 3.4 and Windows 8.1 64bit.Currently, Naver News' comments can only be viewed by clicking on the More window, and before...


1 answers
40 views
0
We're building a console-based 2048, with Python. During the test, the stick is still and still. I think it's a random function problem, but I don't know what the problem is.

from random import randintclass Board: def__init__(self):#mapmaking function, works (requires optimization) self.score = 0 self.size = 4 n = self.size+1 self.board = [[0]*n for i in range(self.siz...

2 years ago

1 answers
16 views
0
I have a question for Python

I have to make A=(5,3,7,1,9) as (1.3.5.7.9) (9.7.5.3.1) using only ifelse whilelen, but I don't know what to do...Do not use Sort reverse

2 years ago

1 answers
93 views
0
Python Deep Radiation

Hello, I'm asking you a question because I'm having a hard time copying the object instance.import copyclass exC: a = None b = NoneinstA = exC()instA.a = 5instA.b = 5instB = copy.deepcopy(instA)print(...

2 years ago
« - 296 - »

© 2024 OneMinuteCode. All rights reserved.