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
17 views
0
I'm asking you a question about the end of the repeat. I want to end the repetition by typing F...

while True: def calc_GUGUDAN(dan): for i in range(1, 10): print (input_data, X, i, =, input_data*i) input_data=int (input (enter) if input_data>=1 and input_data<=9: calc_GUGUDAN(input_data) ...

2 years ago

1 answers
16 views
0
Why does Python not return when you write the if conditional statement in the function...

The above code works fine.If you do choice==1 here,When the title of the movie that the customer is trying to search is not the key value in the movie dictionary I'd like to add the print('There is no...

2 years ago

1 answers
50 views
0
Py using html or php input value and output returned result value to html(php)

I want to do the same thing, but I don't know how to start Help me

2 years ago

2 answers
30 views
0
Randomly shuffle input strings

import randomlist = []word=int(input('Enter:')))list.append(word)random.shuffle(list)print(list)I'm trying to do this, but it's not mixed What's the problem?

2 years ago

2 answers
78 views
0
This is a question related to the Python list enumerate repeat statement.

I'm writing code to make it like this, but it got stuck while writing no1~5 below.score = [88,95,70,100,99] classes = [Korean, Math, Science, Physics, Chemistry] for i, v...

2 years ago

1 answers
41 views
0
It's a question from Python Json

// Enter code hereurl = https://8oi9s0nnth.apigw.ntruss.com/corona19-masks/v1/storesByAddr/jsonHello, I'm a beginner studying PythonI received json as url, but I want to bring up only certain values i...

2 years ago

1 answers
16 views
0
Questions regarding python list. The print result in the for statement is listed

I'll use the repeat statement and the result will be11111(Vertical, one for each line) I'm going to convert the result into a list[1,1,1,1,1,1] How do I make it?Here's the code. num_list = [1,2,3,4,5]...

2 years ago

1 answers
133 views
0
Python join, reduce split space

I'm going to download the process list from cmd to txt and reduce the gap with Python.(tasklist | findstr > a.txt to create a text file.)A list of processes is saved in the following format:sms.exe...

2 years ago

1 answers
49 views
0
PYTHON) How to manage Pandas data in the same format?

Assume that you have the following code:import pandas as pdclass_1 = pd.DataFrame({'Name':['Challe', 'MinHo', 'Muhan'], \ 'Age':[15, 15, 16], \ 'Village':['MaxDown', 'OceanPark', 'HolyRiver']})T...

2 years ago

1 answers
41 views
0
This is a question to remove a specific key (name) from the data received by python json

// Enter your code hereurl = https://8oi9s0nnth.apigw.ntruss.com/corona19-masks/v1/storesByAddr/jsonjdata = jdata['stores']I want to show the dictionary corresponding to stores and delete and show cer...

2 years ago
« - 369 - »

© 2024 OneMinuteCode. All rights reserved.