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
118 views
0
Ask about ModuleNotFoundError: No module named xx in Python.

I'm inquiring because there's a blockage during Python work.As I was working on the programming, I imported various useful libraries and used themWhether the path side is twisted while installing anot...

2 years ago

1 answers
45 views
0
I don't want to use a for statement, but I want to combine characters in the list into a single string

I don't want to use a for statement, but I want to combine characters in the list into a single stringa = ['a','b','c','d']Same list type a = 'abcd'I'm going to change it to one stringMy code was made...

2 years ago

1 answers
59 views
0
How to view encrypted traffic when programming the web with Python

Hi, how are you?When I programmed the web with Python,How can I view encrypted traffic?Java was possible by using eclipse and fiddler as a proxy as shown in the link belowPython doesn't know how.https...

2 years ago

1 answers
15 views
0
If there's a Python error, how do I start from the beginning?

For example,If there's an error, we're going to start over from the beginning.Which one should I use, try exception or something?

2 years ago

2 answers
17 views
0
Python averaging problem.

def solution(arr): sum(arr)/len(arr)If you run it with the code above, it says it's wrong when you submit the answer, but I don't know why.--Problem--https://programmers.co.kr/learn/courses/30/lessons...

2 years ago

1 answers
13 views
0
Python file error?I have a question regarding

I'm a beginner who just started Python. I'm going to make a Python file (saved by name hello.py) edit plus and run it on cmd C:\Users\LG>cd C:\PythonC:\Python>python hello.pyI typed can't open f...

2 years ago

1 answers
85 views
0
Is there a way to clear the logs from the Requests library?

In default settings, the Requests library continues to write log messages to the console (such as Starting new HTTP connection...), which is so annoying.How can I set it so that it doesn't look like t...


1 answers
109 views
0
I want to know how to test algorithms with Python

Hello, I'm a new student who started studying algorithms.I'm solving the Baekjun algorithm problem with Python.When there was no input value or one line, I used to test it by floating it on the consol...


1 answers
128 views
0
How do I receive a response from the browser after sending a request from the code?

The response that comes back after making a request using requests.post with Python is HTML including JavaScript, so in this case, which library should I use to receive a response from the browser?Sel...

2 years ago

1 answers
119 views
0
Which flag should I use to see all the packages that can be downloaded from pip?

Which flag should I use to view the entire package that can be pipinstall? I searched all the pip option in English, but I couldn't find it.

2 years ago
« - 283 - »

© 2024 OneMinuteCode. All rights reserved.