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
19 views
0
Python upside down

The body of the question. Given a string, write a revers_words() function that returns a string that reverses each word in units of spaces. However, it is assumed that the input string is given withou...

2 years ago

1 answers
67 views
0
This is a question about the Python parking fee calculation program.

answer = {'1234': {'IN': '07:30', 'OUT': '15:15', 'parking_duration': 465, 'parking_fee': 24000}, '2580': {'IN': '07:35', 'OUT': '08:45', 'parking_duration': 70, 'parking_fee': 4000...

2 years ago

1 answers
19 views
0
Delete 2 parentheses (Python)

Hello, I have a question because there is a blockage in coding. The input is as followsYou are my happiness, but I love youThe (happiness) part is left with one parenthesis, and (happiness (you)) is m...

2 years ago

1 answers
19 views
0
Python Question

I'm solving computational thinking and Python exercises in Python books There is a problem that says, If the user is given a quiz and contains capital letters, let's guide them to enter only lowercase...

2 years ago

1 answers
138 views
0
Inquiries about Python Boolean function and list utilization

# Initialize the list to contain the prime numbersprimes = []for n in range(2, 101):# Let's just say that n is a prime number is_prime = False For num in range(2, n): # For num between 2 and (n-1) If...

2 years ago

1 answers
21 views
0
Problem error taking additional values from the Python list and averaging them

num= [30, 29, 47, 10, 78]a = input (What number do you want to add?) #Accept a number to addnum.append(a) # Add accepted numbers using append among methodsplus = sum(num)average = plus / len(num)print...

2 years ago

1 answers
19 views
0
End an infinite loop that receives additional values from the Python list and averages them

Make a list and write a program that adds an integer when it is entered and outputs the average value of the list each time. At this time, if you enter 'don', the program ends.I'm solving this problem...

2 years ago

1 answers
14 views
0
Divide the input integers and add the sum of each digit in the integers

Hello, I wrote the code in Python, but I got a compilation error, so I'm asking you a question.Please explain which part is wrongProblem: Split the input integers and write a code that adds the sum of...

2 years ago

1 answers
130 views
0
Python Turtle for Moon

How can I change the shape of the picture above to Python Turtle for Moon?

2 years ago

1 answers
46 views
0
Please help me, Python hyungs

The first questionQuestion number 2 It hasn't been long since I started Python, but it's not working out at all. Help me!

2 years ago
« - 452 - »

© 2024 OneMinuteCode. All rights reserved.