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
86 views
0
How to Use Scrapy Threads

Hi, how are you?I do web-crawling with Scrappy Since there's a lot of data, it takes more than 10 hours to get it...I looked up how to solve this, and they said we could use a thread I've never used a...


2 answers
61 views
0
How can I check the execution time of code in Python?

I want to check how long it takes for the code to run. How do you measure time?

2 years ago

1 answers
17 views
0
css question

I'm studying while making a website<a href=> Title </a>If you add a path to the title and make a css separately,The style of the title doesn't workIsn't this how you do it?

2 years ago

1 answers
112 views
0
Python, I have a basic question.

After the repeat statement is over, shouldn't you exit the repeat statement and run the following...?I wrote it in my heart, but why isn't it working?And how do I get print(a) executed?(This is the cm...

2 years ago

2 answers
109 views
0
Display dictionary data or images in the Django template

Hi, everyone.I would like to ask you how to display the image data downloaded by scrapy on the long-term template.First of all, the data field downloaded by scrapy is connected to the Django model usi...

2 years ago

1 answers
52 views
0
Django, adding views to detail page

We're learning about Jango Girls in KoreanApplication extension part / post Add view to detail pageIf you type Post.objects.get(pk=pk) in the shell,It says doesnotexist at/post/10When I type the low-k...

2 years ago

1 answers
52 views
0
To create a table by copying and modifying a specific table in the Django model

Hello. This is a question for Jango model.class EnActress(models.Model): name = models.CharField(max_length=100, null=True)After modifying the data in the name field in the above model (data in the na...

2 years ago

1 answers
125 views
0
Python variable range problem

I've been programming for years, and recently started learning Python. The code below works normally on Python 2.5 and 3.0 as I expected :a, b, c = (1, 2, 3)print(a, b, c)def test(): print(a) print(b)...

2 years ago

1 answers
127 views
0
Create variables dynamically using a repeat statement

I want to dynamically generate variables using repetitive statements in Python. Please suggest a creative way.

2 years ago

1 answers
19 views
0
List sort question.

temp=0a=[0,0,0,0]a[0]=str (input (first digit : )))a[1]=str (input (2nd digit: )))a[2]=str (input (third digit: )))a[3]=str (input (fourth digit: )))for i in range(0,3): max=i for j in range(0,3): if...

2 years ago
« - 209 - »

© 2024 OneMinuteCode. All rights reserved.