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


3 answers
16 views
0
I don't like numbers like programmers level1

Array arr is given. Each element in the array arr consists of the numbers 0 through 9. At this point, you want to leave only one consecutive number in the array arr and remove them all. However, when ...

2 years ago

1 answers
39 views
0
Question about Python selenium crawling error

What I wanted to make was to go into the site posting and scratch my writing.Some of the current errors have not yet been scratched, and an error has occurred while trying to create a part that uses t...

2 years ago

1 answers
15 views
0
How do I print it out under certain conditions at a place on the list in Python Dictionary?

Hello, I am writing because I have a question.In a situation where a list of items is made in a dictionary like this What should I do if I only try to print out people who are over a certain age?For n...

2 years ago

1 answers
15 views
0
I have an in list question in the conditional statement!

TestA = [TestB, 'gold' ,'void']TestB = ['Test', 130] testa testb and in the number is if there are more than 150 or, ‘test’ in the testb -> 'Check Test B' If there is a TestB in TestA, there is no ...

2 years ago

1 answers
18 views
0
Python print (25//10**2+1) Why is the answer 1? Isn't it 5?

From Python print(25//10**2+1)The answer is 125//10**2 is 25 divided by 10 is 2 where 2 squared isIsn't it 4?Why is 0 coming out? ㅜ

2 years ago

2 answers
17 views
0
To move certain values forward in the list and sort the rest in ascending order

(100,20,3,40,550,6,77....100) So what do we do if we have a specific value (for example, index 2) that comes forward unconditionally and then in ascending order?

2 years ago

1 answers
19 views
0
Create a list from Python list_1 to dlist_n and collect the first value for each list.

How do I retrieve a specific list using variable names in Python?setattr(mod, 'dlist_{}'.format(i+1), list(map(int,input().split())))With this code, you want to create a list from dlist_1 to dlist_n a...

2 years ago

1 answers
17 views
0
Please tell me how to print out Python

Output the sum of 5 multiples from 1 to 1000, but produce the output as shown in the following form. (Submit both programs using for statements and programs using while statements.) However, the for s...

2 years ago

1 answers
19 views
0
Computational Question

Create a tuple ([3+2, 5,3], [6/2, 3,5], [10-2,8,3], [2's 3 wins,8,4], [5-2*2,1,5]) ([problem, answer, score] format)>Show each question, ask the answer, and accumulate the score if it is correctShow t...

2 years ago

1 answers
103 views
0
I have a question regarding Flask SQLAlchemy.

First of all, the logic to be implemented is to read the time value (data) stored in the DB through the datetime moduleWhen I display it on the web after processing it once, I want to print it out in ...

2 years ago
« - 415 - »

© 2024 OneMinuteCode. All rights reserved.