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


2 answers
16 views
0
Counting the number of vowels in a sentence

Creative Computing for Engineers, Architecture and Architectural EngineeringOnly count the number of vowels in this sentence. But don't use for and in, and I'd appreciate it if you could tell me using...

2 years ago

2 answers
93 views
0
Self-Error when entering a string for a question that requires a decimal point

I make a code to enter the second decimal placeIf you enter a string, or if you enter a decimal point incorrectly, Print a print (Re-enter).You want to prompt again to enter the second decimal place.B...

2 years ago

1 answers
60 views
0
Python rows How to fill 5 even if the length is less than 5

Hello, masters! I'm asking a question because it doesn't work out well after trying it for a few days alone. def make_news_cnts(self): rows = self.get_news_issue() row_html = get_row_html(rows) new...

2 years ago

1 answers
14 views
0
So that even if you type only a part of the name, the corresponding phone number is printed out.

//dic={'Hong Gil-dong':'010-4444-5555','Kim Jungang':'010-9191-8181','Simcheong':'010-3232-5454'}while True: user = input ('name>>') namelist = list(dic.keys()) numberlist = list(dic.values()) i...

2 years ago

1 answers
17 views
0
At the end, the minimum value is -- not the maximum and minimum value true false How do you get the maximum value to be --?

A = int ((Enter the first digit)B = int (input (Enter the second digit))C = int (input (Enter the third digit))print(Maximum value is A, A>Band A>C)print (Maximum value is B, B>A and B>C)p...

2 years ago

1 answers
60 views
0
Python ends in the middle

The upper code was cleared in the middle. I want to end the program execution in two parts of the shop. Please let me know. list_input = []while True: x = input (Enter a positive integer). : ) intorn...

2 years ago

1 answers
86 views
0
Python split related error

def cal(a,b): print(a,'+',b,'=',a+b) print(a,'-',b,'=',a-b) print(a,'*',b,'=',a*b) print(a,'/',b,'=',a/b)n=int (input ('two integer inputs:')).spilt()cal(n)If you create a function like this and enter...

2 years ago

2 answers
20 views
0
Can I put a variable in the path in Python?

import jsonimport pandas as pdwith open('D:\\openpose\\train_json\\prame (1).json', 'r') as f:json_data = (json.load(f))json_ar = json_data.get('people')f or list in json_ar:a = (list.get(pose_keypoin...

2 years ago

2 answers
57 views
0
Python pointer

Hello.p = Noneif b.x == c.x: //When Python has the following code, make the variable p a pointer for readability and externally I'd like to use corbLike this.*p = None #virtual grammarif ...: p = &...

2 years ago

1 answers
14 views
0
Duplicate processing problem when applying flip function

I'm embarrassed because it's such a basic question, but I'm asking you because I need help in the self-study process.Problem is bImplement a function (filp) that generates data of the dictionary struc...

2 years ago
« - 411 - »

© 2024 OneMinuteCode. All rights reserved.