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
83 views
0
I want to use the Python output value as a variable in another list.

I made a code that increases the date by a month using the if and when statements.And if you use a print between the codes, you can do whatever you want 201607201608201609201610201611201612The dates c...

2 years ago

1 answers
78 views
0
Create a calendar output program without using the Python calendar function

I received a task to write a calendar output program, but without using the calendar function, Can I write a program to print out a calendar by typing in the day of the week and how many days the mont...

2 years ago

1 answers
117 views
0
Python for statement variable declaration

I want to declare a variable in the for statement in Python and receive a value, so what should I do?for i in range(10):value_i = iprint(value_4)

2 years ago

1 answers
122 views
0
I want to know the similarity (accuracy) of the two array-type lists in Python.

I'm a college student who just started studying deep learning.For study, we processed the time series data in the GRU method of RNN for the purpose of predicting specific meteorological phenomena, and...

2 years ago

1 answers
21 views
0
Python: I don't think I understand this expression I would appreciate it if you could pin down which part was wrong.

def func(x=2): if x<=0: return print(x)for x in range(3): func()222When I did it, this value came out, but I thought I was misunderstanding something, so I wanted to hear the answers from maste...

2 years ago

1 answers
22 views
0
If I don't delete the Python list, will it remain in memory?

order_list= [toothpaste, soap, toilet paper] for i in order_list: save_list = [] save_list.append(i)In this way, we create and use save_list while touring the for door.Isn't save_list generated and ...

2 years ago

3 answers
95 views
0
This is a question related to page parsing during Python web crawling.

import requestsresponse = requests.get('http://?????/')html = response.textfrom bs4 import BeautifulSoupsoup = BeautifulSoup(html, 'html.parser')for tag in soup.select('tbody'): print(tag.text)I dele...

2 years ago

2 answers
19 views
0
Python question

numbers =[ ]for n in range(5): data=int(input('append(data):')) numbers.append(data)print(numbers)I made the code like this Makefile:6: recipe for target 'py3_run' failedmake: *** [py3_run] Error 1 F...

2 years ago

2 answers
130 views
0
Please help me to find the same value in the dictionary in the Python two lists and make one list

ex_list_1 = [{name:kim, age:35, height:185}, {name:Lee, age:15, height:165}] ex_list_2 = [{first_name:kim, nickname:kkk}]When there are two lists of this type, I would like to combine the dict() of ex...


1 answers
43 views
0
To import data from an open Excel window into Python

**Get the data of the turned-on Excel window right away without saving the Excel fileI want to know how to code. Help!**I'm a beginner who wants to automate the company's work with Python.I learned ho...

2 years ago
« - 242 - »

© 2024 OneMinuteCode. All rights reserved.