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
20 views
0
Python's self and JavaScript's this

Hello.I'm studying Python and JavaScript together. JavaScript uses used in Python and this self has the same meaning?

2 years ago

2 answers
17 views
0
I have a basic code question for Python 3.

I am a beginner studying Python 3.I have to write a code that outputs the value a3b2c6a1 from the string 'aaabbccccca', but I can't understand the answer, so I'm posting a question.def compress_string...

2 years ago

2 answers
146 views
0
If \n is added when creating a new file after reading the Python file readline

Code to create a new file called test.csv by reading a file called test.csv. Delete the other parts and upload only the problematic parts. As a result, I solved it in a different way, but I have a que...

2 years ago

1 answers
128 views
0
Show hidden content in HTML source view when scrolling down a webpage with Python

Facebook, Kakao Story, or Naver.If you scroll down while looking at the webpage, you'll see the hidden content.So that you can see the hidden content in the page source view at once Is there a way to ...


1 answers
22 views
0
I'll read the Python csv file and ask you a question when I pay.

Now read the file from the csv file, do various calculations, and transfer it to another csv fileIf you are writing a program and the number of elements in the list has not been determined, I don't kn...

2 years ago

1 answers
17 views
0
Python random. Here's a question

You want to extract 5 random values among real numbers between 0 and 10 I think you have to extract the value using a1=random.uniform (0,10) to make a mistake (the rest is almost an integer) Maybe I d...

2 years ago

2 answers
159 views
0
I'd like to know how to print multiple lines from Python

Hello, I'm a beginner at Python.a=10b=7c=5d=9e=8f=2print(a,b,c,d,e,f)>>> 10 7 5 9 8 2How do I print out by breaking it into multiple lines? 10 7 59 8 23 lines per line, 2 lines in total, or 1...

2 years ago

4 answers
16 views
0
[Python] I want to create a variable name in the for statement, is there any way?

connection_list = ['user','password','db']account_list = ['1','2','3','4']for i in range(0, 4): vars()[connection_list[0]+account_list[0]]=connection_list[0] print(connection_list[i])If you do so, the...

2 years ago

1 answers
17 views
0
Python function question

.How do I substitute the two parameters I received from account_info with the log_in function??

2 years ago

1 answers
136 views
0
Run the ipynb file with administrator privileges on the Jupiter notebook!

PiCham or Anaconda can be run with administrator privileges by right-clicking Run with administrator privileges, but how can I run it with administrator privileges on Jupiter's notebook?

2 years ago
« - 220 - »

© 2024 OneMinuteCode. All rights reserved.