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
64 views
0
You want to get this value from Python 3 list.

list = [{'`ur`l': 'https://cdn.discordapp.com/attachments/388321676150046720/390998168218894340/unknown.png', 'proxy_url': 'https://media.discordapp.net/attachments/388321676150046720/3909981682188943...

2 years ago

1 answers
103 views
0
I made a simple server program with Python, but it works well on my computer, but it doesn't work on other computers

We implemented a simple server program using Python. It's a program that returns a string when you receive a GET message. I run the program, and I put it in the Internet window on my computerhttp://JI...

2 years ago

1 answers
140 views
0
Python 3.6 PyQt5 questions

Questions about list.py and ui and view.py. I worked with PyQt5 and used pimysql. Please reply.


1 answers
13 views
0
Python: The if statement doesn't work... (comparison code in list order)

Hi, how are you?I am an ordinary person who learns programming as a hobby.I made a code to compare the list of a and b below in order.First, I'm going to compare it to number 5.The problem with this c...

2 years ago

1 answers
16 views
0
Put Python special symbol number right in front of it

//Cash=6600.0AR=6200.0tne=25000.0TotalAssets=Cash+AR+tnenp=5000.0ap=25000.0TL=np+apCapitalstock=7000.0re=800.0totalEquity=Capitalstock+retotal=TL+totalEquityprint({0:<21s}${1:>20,.0f}{2:<2}{3...

2 years ago

1 answers
115 views
0
I want to change the baseball game to a function, is there any other way to use global?

Below is a baseball game that I have madeimport random answer = random.sample(range(1,10),3) tr_num = 0 # Variable indicating how many attempts have been madevariable representing the number of st...


1 answers
33 views
0
Python Q front, rear value doesn't come out

class MyQueue : def init(self, max_size): self.max_size = max_size self.front = -1 self.rear = 0 self.myList = []def enqueue(self, item): if self.isFull(): return None else : self.myList.append(...

2 years ago

1 answers
17 views
0
Please take questions about Python coding

It's a question when you use Python regular expression [email protected] Hong Gil-dong If you only want to print out the previous email address here, in the regular expression,This is re.co...

2 years ago

1 answers
17 views
0
Find the required strings in a text file, then count them and compare them

I'd like to find the necessary strings in the txt file and extract them to find out the total number and compare them.I'll skip the code I've created and show you!f = openfile = f.read()file_s = file....

2 years ago

1 answers
18 views
0
Python beginner's question. (Very basic)

n = int (input(1)) result = 0i = 1while i < n + 1: result = result + i print(i, end = ) if i < n: print(+, end = ) else: print(=, result, end = ) i = i + 1n = int (input((2) fixed power)) resu...

2 years ago
« - 230 - »

© 2024 OneMinuteCode. All rights reserved.