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
14 views
0
To specify a Python replace number

I want to delete the number using replaceString (.replace('0', ).Is there a way to specify a number as a whole other than to enter all numbers from 0 to 9 in this way?

2 years ago

1 answers
53 views
0
(Python Foundation) % Remaining Operator Error Problem

%d %d in the last line gives an error because of the % in the middle. It's one of the arithmetic operators, and it seems to have an error because you couldn't read it as an arithmetic operator and the...

2 years ago

2 answers
12 views
0
What is a = a and b?

I'm asking you a question because there's an unknown part while studying through the library.def exemple_function(version): self.version = version and int(version)It said that, but I don't understand ...

2 years ago

1 answers
126 views
0
I'd like to post with Python requests.

I'd like to access my homepage through Python requests.import requestsURL = 'http://cyphers.herokuapp.com'payload = { 'myName': 'Good Adult',}session = requests.session()r = requests.post(URL, data=pa...

2 years ago

2 answers
96 views
0
Put another array value in the Python for statement array.

aa.pyrecords1 = [(a,1),(b,2),(c,3)]records2 = [(a1,4)]# Each array value has a records2 value as many as the number of records2 value.i = 0while i < len(records1): records1[i].append(records2) i = ...


1 answers
15 views
0
Python server-client tcp operation problem.

*emphasized text*C:\Users\jjh89\AppData\Local\Programs\Python\Python36\python.exeC:/Users/jjh89/PycharmProjects/untitled/client.pyconnected server!input sachick(q to quit, 0 to initialize) : 2 + 5Trac...

2 years ago

1 answers
47 views
0
Python Server

Build a server with Python When the client connects to the server through the IP using my computer's telnet,The server wants the client to enter the desired value.But when I learn network programming,...

2 years ago

2 answers
13 views
0
Python

def f(a,b,c): if a>b and a>c: max=a elif b>a and b>c: max=b else: max=c if a<b and a<c: min=a elif b<a and b<c: min=b else: min=c return max, minprint(f(5,3,4))Whatever i...

2 years ago

1 answers
14 views
0
This is a question about indexing the Python list

class namecard: def __init__(self, name, email, addr): self.name = name self.email = email self.addr = addr def printinfo(self): print(=*30) print(Name: +self.name) print(Email: +self.email) pr...

2 years ago

1 answers
71 views
0
Is there a way to trace while running the program?

I'm creating a program that receives files from the website and reads the data as numpy.But when I receive the file, there are countless errors due to strange links or wrong xml structures ㅜ

« - 314 - »

© 2024 OneMinuteCode. All rights reserved.