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
146 views
0
I want to write a code that ends when I enter the Python while door, how can I implement it?

n = input('Enter the student's name and grade)\nExample) David 537548 :')while n=='\n': n1,n2,n3,n4 = n.split() n2 = int(n2) n3 = int(n3) n4 = int(n4) L.append(n1) M.append([n2,n3,n4]) Avg.append(int(...


2 answers
14 views
0
Python question

a = int(input())c = []b = []q = []for i in range(a): c.append(input().split())for u in range(len(c)): for z in c[u]: q.append(int(z)) b.append(q) while len(q) == 0: del q[0:-1] del q[-1]print(b)I...

2 years ago

1 answers
147 views
0
Python Web Crawling Questions

For each movie in the file, the plot on the NAVER movie site,I'd like to crawl. Is there any way?

2 years ago

1 answers
63 views
0
I'd like to determine the order of Python errors. import error

When importing message.py from running py Error importing util from message.py Also, an error occurs when importing the util by itself from the utilIs the correct error solution to solve the problem f...

2 years ago

1 answers
111 views
0
Python subplot. I'm asking you a question

fig, ax = plt.subplots(5, 2)ax[0, 0].plot(temp[:144], 'r') ax[0, 1].plot(temp[144:144*2], 'r') ax[1, 0].plot(temp[144*2:144*3], 'y') ax[1, 1].plot(temp[144*3:144*4], 'y') ax[2, 0].plot(temp[144*4:144*...

2 years ago

1 answers
22 views
0
Questions about Python Turtle!!!

I drew this picture using a turtleneck, and I want to make it move when I press up, down, left, right.I can't find a way to google it ㅜㅜShould we objectify these shapes and use these functions?Or shou...

2 years ago

1 answers
57 views
0
The problem of crawling by reading a text file containing url in Python

I wrote a code that stores Naver ratings and one line reviews with Python Strangely, it seems that only the url in the first and last lines of the text file executes the code normally. crying What the...

2 years ago

1 answers
82 views
0
I want to paste the list value into a specific part of the multi index dataframe. (Python)

I want to paste the list value into a specific part of the multi index dataframe.The code below is the data frame that I am currently practicing. I want to put list1 and list2 in the specific column a...

2 years ago

1 answers
86 views
0
It's a question about Python beginner for Moon

//for i in range(5): for j in range(i+1): print('*',end='') print() for i in range(5): for j in range(5-i): print('*',end='') print()When I do this, it becomes double cloth, so the shape I want do...

2 years ago

1 answers
79 views
0
Method in Python

Hello.When you create an object with Python, the line gets a little longer. The line is this long. Each object has an INSwhen it's turned.Each individual has this long line of source code? There are t...

2 years ago
« - 222 - »

© 2024 OneMinuteCode. All rights reserved.