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
95 views
0
Cannot import name 'keys' error Why does this appear? I copied you.

I followed along while watching YouTubeYouTubers are doing well, but IImportError: cannot import name 'keys' error keeps coming up.Please Teachers

2 years ago

2 answers
43 views
0
Multi-core programming method to share specific elements in Python

I read the initial values from DB, and I'm holding them from Python to a tuple.In this situation, you have to do a large number of operations by changing the value of a variable. The initial value tup...

2 years ago

1 answers
31 views
0
I have a question about the int() function of Python. If you put 1.00 in int(input()) it makes an error different from int(1.00), why is that?

I executed it as follows.c = int(input())1.00Traceback (most recent call last): File <pyshell#9>, line 1, in <module> c = int(input())ValueError: invalid literal for int() with base 10: '1...

2 years ago

1 answers
19 views
0
What should I do when I decide on repetitive variables?

variable 1 = 'Hong Gil-dong'Variable 2 = 'Kim Gap-hwan'..Variable n = 'Long'========================Variable 1_1 = 'Hong Gil-dong'Variable 1_2 = 'Kim Gap-hwan'Variable 2_1 = 'Listening'..Variable n_n=...

2 years ago

1 answers
19 views
0
Determining Continuous Values

If I keep printing 1 and 2 randomly on Python and 1 or 2 come out 3 times in a row, I want to end the program, but what should I do with the code that has a specific value in a row?

2 years ago

1 answers
65 views
0
Answer How to convert csv file data using Python_2

I want to use datetime to specify all the columns in the 'date' column, convert them, and put them back in. There's an error. Please give me a solution

2 years ago

1 answers
100 views
0
Python multiprocessing question! (Correction)

After defining the class called Test, define the write and read functions in itAfter creating the object, I tried to run both functions at the same time using the multiprocessing module, and I tried c...

2 years ago

2 answers
127 views
0
I'm curious about how to save Python Dictionary

friends = {}for i in range (0,3,1) : friends = {'name': input('name:')', 'tel':input('phone number:')', 'addr':input('address:')', 'age':input('age:')}print(friends)I'm saving the addresses of three f...

2 years ago

1 answers
53 views
0
I want to develop the web using Janggo.

I'd like to develop the web using a long storage device. I want to use Naver's login.In other words, validation of ID and password is Naver's https://ndim.da.naver.com/sso/auth If you try to do it her...

2 years ago

1 answers
43 views
0
Error in sum with individual data collected by Python Pandas???

We put the combined values from column 1 to column 200 of the data collected by Pandas into column 201 and created a code to save them as a csv file.(How to add column 1 values to column 201 and accum...

2 years ago
« - 227 - »

© 2024 OneMinuteCode. All rights reserved.