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
107 views
0
I want to know how to bring African chat to Python.

I'd like to bring real-time chat and star balloon gift details that are uploaded during African broadcasting and save them in DB. I saw that other people made it using Java, meaven, netty, etc. Lookin...

2 years ago

1 answers
47 views
0
Schematic illustration of the number of values in each column of the data frame using pandas

For example a b c d e f g1 2 1 2 1 2 12 1 2 1 1 1 11 2 2 2 2 1 2If you have this kind of data, you can use Panda's, Numpi, a b c def g for each attribute Is there a way to summarize the whole data in ...

2 years ago

1 answers
61 views
0
Error in Python model.fit() (lstm)

Creating a classification model using LSTM.Row data has been purified in natural language, and both x_data and y_data are ndarray types.Model.fit (X_train, y_train) errors when trying to divide train ...


1 answers
19 views
0
Print out results found in Python for statement at once

It could be a basic question. I'm asking you a question because I can't solve it by myself.If you run the code below:Output of a values specified in the for statement l 123 ll 45 ll 2 ll 123 ll 45 ll ...

2 years ago

1 answers
15 views
0
It's a simple question, Python. One more blank line.

Enter the two numbers corresponding to the x and y coordinates with one space.In the corresponding coordinates of the 5x5 compartments,The rest outputs zero.The code is as follows. n = int(input()) wh...

2 years ago

1 answers
98 views
0
Ifelse statement A simple question.

age = int(Enter your age)if age >= 20: print('you are adult')elif age >=10 or age < 20: print('you are adolescent')elif age < 10: print('you are baby')I made the code like this, but even ...

2 years ago

1 answers
51 views
0
How to install rpm package on closed network Centos 7?

I installed Python3 on CentOS 7 installed on a closed network server and imported it to use Pandas. ModuleNotFoundError: No module named '_bz2'I'm getting this error...I heard that you can download th...

2 years ago

1 answers
15 views
0
Python Beginner Line Wrap Output Questions

Hello, I'm a beginner who started Python this week.I was solving the problem, and I had a difficulty, so I left a question here.First of all, Q.When x = 30 is entered 1 2 3 4 5 6 7 8 9 1011 12 13 14 1...

2 years ago

1 answers
15 views
0
Replace Python String Order

I made this code.def Replace place (a): b = '' for i in range (0, len(a)-1,2): b += a[i+1] + a[i] return bIf you change the position of '1234567' here, there is a problem that 563412 comes out and th...

2 years ago

1 answers
136 views
0
How do I unfold python overlaid dict without a flatten external library?

nested = {'X': {'a': {'one': 10, 'two': 20}, 'b': {'one': 10, 'two': 20}, 'Y': {'a': {'one': 10, 'two': 20}, 'b': {'one': 10, 'two': 20}}}This dict value is nested = {'X_a_one':10, 'X_a_two':20...}I'...

« - 393 - »

© 2024 OneMinuteCode. All rights reserved.