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
15 views
0
fbchat client function login error

from fbchat import Client client = Client('[email protected]', '______')Every time you run the code above, Attempt #1 failed, retryingTraceback (most recent call last): File C:\anaconda3\lib\site-packa...

2 years ago

1 answers
15 views
0
I would like to ask you why there is an error in the Gugudan output Python coding.

The question is to receive the number of multiplication tables and output all the corresponding numbers.However, the number of steps that can be input is limited from 1st to 9th steps, and if other st...

2 years ago

1 answers
17 views
0
I have a question about Python python essence output!

I want to receive and save hexadecimal data a and output it in the form a = 0xa3 = 0b10100011 but I don't know how to convert binary. a = input(hexadecimal a = )print(a = +a+____)

2 years ago

1 answers
78 views
0
Python Matrix Question: How do I make the right top, left top, right bottom, left bottom only 1 and the rest zero?

How do you make the top right, top left, bottom right, bottom left, and bottom left only 1 and the rest zero?[[1 0 0],[0 0 0],[0 0 0]][[ 0 0 1],[0 0 0],[0 0 0]][[0 0 0],[0 0 0],[0 0 1]][[ 0 0],[0 0 0]...

2 years ago

2 answers
18 views
0
Installing Cryptography Python 3.8

It's hard to be offline. Master First of all, I am installing and using cryptography properly on a PC that can be used on the Internet.(I think I will use the Python 3.6 version cryptography-3.4.6.tar...

2 years ago

1 answers
43 views
0
Pandas data frame if statement

Hello, I'm going to make an if statement by going around the value.If the value is greater than or equal to 25 or less than 8, score 3If it's 9<=x<=11 or 21<=x<=24, then 2, The rest of the...

2 years ago

1 answers
107 views
0
Is there a way to make a code editor in Python?

I'm making a programming language because I'm bored.The grammar used in the programming language is different from the grammar on the market, so can you make a code editor?It's okay to simply be a Cod...


2 answers
14 views
0
Number of iterations of the most consecutive number in the Python list

For example, in the list, [2,2,2,4,4,5,6,1,1,1,1,1,2,3,1,4]It's like this. The number that repeats the most in a row is 1 that repeats 5 times, I want to say that the output is five, but what should I...

2 years ago

1 answers
82 views
0
Python Lexer

I'm making the string Lexer, but I don't know how to make it, and the letters after the last space don't come out, but I'm curious and don't know how to fix it.The goal is to categorize the string in ...


1 answers
13 views
0
I would like to ask you to create a folder within a folder within a folder.

First, the folder creation code is import osdef folder(dir): try: if not os.path.exists(dir): os.makedirs(dir) except OSError: print('error: up.' + dir) folder('./1/2/3/4/5/6/7/8/9/10')This crea...

2 years ago
« - 408 - »

© 2024 OneMinuteCode. All rights reserved.