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
16 views
0
This is a question about the minimum distance from the Python dot.

I want to draw a random dot using random and turtlen, but I want to set the minimum interval between the dots. What should I do?

2 years ago

1 answers
55 views
0
I have a question for Python code. Two actions do not work at the same time. (Sockets, Servers, Vibration Sensors)

Hello. I use the Python cord for jjamppong, but if one works, one doesn't work... I don't know what the problem is.I don't really know Python, so I'll look for a lot of things and order jjamppongWhen ...

2 years ago

1 answers
124 views
0
This is a Python import problem.

Hello, I'm a newbie who just started Python.Cannot import name Module from flaskI installed the flask and checked that it was installed well.Can you tell me why not?ㅠ

2 years ago

1 answers
120 views
0
Pool.map Just a quick question...

if __name__ == '__main__': pool = Pool(processes=8) pool.map(loop1, range(3,10003)) pool.close() pool.join()Is it right that the eight processes do the same thing over and over again?For example, is ...


1 answers
19 views
0
It's a game code that I made by myself, can anyone fix it' There's no one to ask.

playertoken=20computertoken=20deck=[0,0,0]comdeck=[0,0,0]value=0comvalue=0mass=0def gameover(): print(Game has ended.)def bating(): print(Do you want to bet?) answer=input() if (answer==yes): print(H...

2 years ago

1 answers
26 views
0
Python Ping Pong Builder

I'm trying to connect Python and Pingbong Builder, but I have no idea, so I'm asking you a question.From Pingpong Builder's side,https://docs.builder.pingpong.us/integration/custom This and the code b...

2 years ago

1 answers
135 views
0
Questions about setting up Python Dictionary!

name = [Gayeon, Nayeon, Dayeon, ...., Hayeon]test1 = [20, 98, ..., 86]test2 = [50, 39, ...,39]and How do I set the name to key and test1, test2 to value in the function info??I want to bundle the valu...

2 years ago

2 answers
11 views
0
List Number Limit Question

N=int(input())N_list=list(map(int,input().split()))print(min(N_list),max(N_list))I want to limit the number of N_list.For example, if the integer of N is 5, I want to try to fit up to five integers th...

2 years ago

1 answers
95 views
0
Python Turtle Color Change: The color of the line and the color of the arrow keep changing.

import turtle wm = turtle.Screen() t = turtle.Turtle() t.penup() t.goto(50,50) t.pendown() t.begin_fill() t.color(brown) t.forward(100) t.left(72) t.forward(100) t.left(72) t.forward(100) t.left(72) t...

2 years ago

1 answers
15 views
0
Python, I'm asking you a question.

There are several values on the list I would like to ask you how to compare these values and if the previous value is less than the later value, proceed as it is, and if the previous value is greater ...

2 years ago
« - 366 - »

© 2024 OneMinuteCode. All rights reserved.