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
114 views
0
I have a question regarding Python gspread + pymyql.

Hello, everyoneAfter accessing the DB using pymysql, I sent a query and found the result value I would like to update the Google spreadsheet through gspread.Currently, I can access the spreadsheet thr...

2 years ago

1 answers
65 views
0
Array in Python array

# -*- coding: utf-8 -*-#country = [san_fransico,cicago,montrial,new_york,washington,atlelanta,miami,mexico_city,los_angeles,bogota,saint_paaulu,Bueno,rima,santiago]country=[san,ci,mon,new,at,wa,los,me...

2 years ago

1 answers
78 views
0
Please tell me about * and sep in print (*[1,2,3], step=')

Hello :) School solves the descending output problem I solved it like thiss = sorted(list(input()))[::-1]Looking at the other answer,print(*sorted(input())[::-1],sep='')*and sep. It's my first time se...

2 years ago

1 answers
19 views
0
Slow problem when saving xlsx files in openpyxl

It's a rudimentary question.We are creating a program that receives data from the server from time to time and changes the value of the corresponding cell in that row if there is any change.I used the...

2 years ago

1 answers
45 views
0
I have a question about the Python procession.

Hello, I'd like to ask you a question about the procession. For example, if the order of 'a', 'b', 'c', 'd', and 'e' is changed in the code below, I want the order of elements in the list to be connec...

2 years ago

1 answers
96 views
0
Unsupported operation type(s) for &: 'str' and 'tuple' are not allowed

I wrote these programs. # Determining the root of a quadratic equationdef discriminant(secterm, priterm, constant): discrinum = priterm * priterm - 4 * secterm * constant if discrinum > 0 : result...

2 years ago

1 answers
26 views
0
Python List-Dictionary

Attempting to recall dictionaries after saving them to the list li=[]dic={}afterwardsRun the code below in the repeat statement. dic['digit']=int(input('digit number'))dic['price' = int('select menu')...

2 years ago

1 answers
32 views
0
[Python] How to use dictionary. (I'm a beginner) (T)

file=open(python_07_04.txt, 'w')subject=Qscore=1test_dict={subject:score}while(subject!=Q): subject=input()while(score!=0): score=input()infile.write(subject+ : +score)infile.write(total = +score)in...

2 years ago

1 answers
79 views
0
This is a question of putting the Python tkinter button command.

b1 = Button(window, text= , width=8, height=4, command=lambda:markBoard(b1))In the process of making a tiktakto game with tkinter,In this way, I'm putting a lambda command in button 1, so can you ad...

2 years ago

1 answers
41 views
0
Entering a phone book with Python

Hello, I'm a beginner at Python.Kim Cheol-soo 010-1234-5678Park Young-hee 010-9876-5432I'd like to enter a phone book like this.I want to program it in advance, and in Python Shell, just type in your ...

2 years ago
« - 252 - »

© 2024 OneMinuteCode. All rights reserved.