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
57 views
0
json format file parsing question

I'd like to extract some value values from the json file below I squeezed out the source that approaches the value value as shown below. There is a key value error as shown below. What is wrong?

2 years ago

1 answers
111 views
0
How can I improve my programming more easily? Is 100 questions and a single stroke the answer?

I'm sorry it's not a question about the code. It's nothing else, but I was thinking about making a list of data that comes out like this on Python today, and it got stuck. I'm guessing it's using a da...

2 years ago

1 answers
44 views
0
Why do you use array when there is a list on Python?

When I learned Python, I learned, Python uses a list instead of an array.But I saw on the Internet that when you make an array, it says that you can make an array in the array module other than the li...

2 years ago

1 answers
53 views
0
Questions about Python crawl

Hello, everyone I'm just learning about Python from the beginning, and I'm asking you a question because there's a blockage while crawling the webpage information.I tried hard to googling, but I could...

2 years ago

1 answers
124 views
0
How do I write conditional statements across lines in an if statement?

What kind of method should I use to write conditions across lines for if?if (cond1 == 'val1' and cond2 == 'val2' and cond3 == 'val3' and cond4 == 'val4'): do_somethingThis way, code3 is on the same li...

2 years ago

1 answers
16 views
0
Hello! I have a question about making Python table

Hi, everyone.I started learning Python recently, but there were a lot of errors, so I'm asking you a questionㅜ

2 years ago

1 answers
127 views
0
How do I find my home directory?

I need to find the home directory path of the logged in userWhat I'm using on Linux isos.getenv(HOME)I can't do this on Windows.Is there a function that can use both Windows and Linux?


1 answers
13 views
0
A site that makes programs with Python?

I finished studying One Bite and Jump to Python by myself.Of course, I don't know when I see it once, and I think I'll have to see it a few more timesAnyway!I want to copy other people's programs I wa...

2 years ago

1 answers
59 views
0
Is there a way to read from stdin in Python?

I need to get input only from stdin, how do I do it on Python?

2 years ago

1 answers
52 views
0
Cocera Michigan University Python Repeating Questions Questions

largest = Nonesmallest = Nonewhile True: num = input(Enter a number: ) if num == done : break print(num)print(Maximum, largest)The above is the hint code. When you output Done, you repeatedly process ...

2 years ago
« - 312 - »

© 2024 OneMinuteCode. All rights reserved.