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
23 views
0
I'm calculating the price

This is the code that I wroteYou're supposed to make a guy that works like this If you select y to continue ordering, the price should be added to the customer in the same seat I keep getting new seat...

2 years ago

1 answers
95 views
0
There was a problem coding the vending machine with Python. TypeError: '<' not supported between instances of 'tuple' and 'int'

def show_menu(): print() print ([Vending Machine Sales Menu]) for i in range(0, len(drink_menu)): if i%10==0: print() print(|,i+1,.,drink_menu[i],:,drink_price[i],|,end= )def buy(num): if money <...

2 years ago

1 answers
24 views
0
Ask Python questions

import turtleimport random## Global Variable Part ##swidth, sheight, pSize = 500, 500, 3r, g, b, angle, dist, = 0, 0, 0, 30, 5 # Set the angle to 30 degrees## Main function part ##turtle.title ('drawi...

2 years ago

1 answers
45 views
0
Question to put 2D array variables... (I want to code it so that it doesn't overlap!)

Hello! I'm Python beginner.The value of n,s,t,k as a variable in an array such as a n : 20~28/s,t,k : 20~27 I calculated the number of all cases and printed it out with a txt file called Noutput using...

2 years ago

1 answers
30 views
0
I don't understand Python syntax, so I'm uploading it "T"

I'm posting a question because I don't understand the syntax of other people's short coding after solving BOJ.print(==if a==b else><[a<b])How do I understand this phrase? I think it's implici...

2 years ago

2 answers
99 views
0

1 answers
23 views
0
When you scrap a text, you will get a message like no such element: Possible to location element

from bs4 import BeautifulSoupimport requestsfrom selenium import webdriverfrom selenium.webdriver.chrome.options import Optionssession = requests.Session()url = 'https://amzn.to/35lnOFf'res = session....

2 years ago

1 answers
82 views
0
Is there a function that returns the value of PyQt5 Qtablewidget row header?

Is there a function that returns me 1 when I click on that part?

2 years ago

1 answers
19 views
0
Python handles duplicate schedules

You are creating a script that writes to text by treating the calendar list as a repeat statement.I'm implementing the ability to bundle and display duplicate schedules, but it doesn't work as I want....

2 years ago

1 answers
38 views
0
I was doing checkiO, but it's stuck from the beginning

If was specified in the conditional statement. local variable 'aa' referenced before assignment There is an error when it says that.Is there an error because aa=T is designated only when it is true an...

2 years ago
« - 248 - »

© 2024 OneMinuteCode. All rights reserved.