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
41 views
0
Python questions

import tensorflow.kerasfrom PIL import Imageimport numpy as npnp.set_printoptions(suppress=True)model = tensorflow.keras.models.load_model('keras_model.h5')data = np.ndarray(shape=(1, 224, 224, 3), dt...

2 years ago

1 answers
79 views
0
Python. Insufficient memory

You want to continue to save data by scratching it on the web at regular intervals.However, if you keep collecting data for several days, you may run out of memory if you have it as an object on Pytho...

2 years ago

1 answers
138 views
0
Python print output delay

print('A',end=)time.sleep(1)print('B',end=)time.sleep(1)print('C')time.sleep(1)print('D')I was expecting ABCD to print out in a second, but...There is no delay unless end='\n'.What are some ways?

2 years ago

1 answers
51 views
0
I would like to refer to another project in django and develop it.

I've implemented a general Python projectI want to create a web server with a long drive and access the project and use function execution or classesHow do I add a project on a different path in a lon...

2 years ago

2 answers
19 views
0
What should I study after Python basics?

https://programmers.co.kr/learn/courses/2/lessons/341 https://programmers.co.kr/learn/courses/29/lessons/1828 I studied Python in these two lectures What should I study next?It's not too hard. Next ti...

2 years ago

1 answers
19 views
0
Python Turtle Graphic Questions

import turtle as timport randomdef RaceSize(): t.penup() big = t.textinput (Please size the stadium. (100–500)) big=int(big) while(True): if big500 : big=t.textinput(),too large. Please decide agai...

2 years ago

1 answers
55 views
0
Divide Python lists into lists

arr = [['a',' b', 'c'], ['b' ,'c' ,'d'], ['d', 'f', 'a']] brr = ['a',' b', 'c', 'b' ,'c' ,'d', 'd', 'f', 'a'] I'd like to change #listarr to brr. If you have any related methods or methods, please hel...

2 years ago

1 answers
16 views
0
Please watch the Python programㅜㅜ

If the sum of the two integers is zero, even side Even, odd side Odd should be printed. a=int(input())b=int(input())print(a,'+',b,'=')c=input()if c ==0:print ('Zero')elif c%2 ==0:print ('Even')else:pr...

2 years ago

1 answers
17 views
0
When should I use parentheses in Python?

I don't know why there is no parenthesis in the string.ascii_lowercase, key = text.count partFrom what we've learned so far, parentheses are essential whether or not variables are included, such as te...

2 years ago

1 answers
81 views
0
How do I get the entire row value selected for the table value in pyqt5?

I want to select the values shown in the table and put them in another table, but I don't know how to find the selected total table row values I've searched, but QItemSelectionModel is tracking the se...

2 years ago
« - 240 - »

© 2024 OneMinuteCode. All rights reserved.