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
21 views
0

1 answers
11 views
0
I have a question for Python.

I'm solving this simple problem, but it's not working. Please help meWhen I run it, I get soso...And you need to input the number of people, but I was testing that I put 3 in the function parameter va...

2 years ago

1 answers
84 views
0
xml file handling

<?xml version=1.0 encoding=UTF-8?><response><header><resultCode>INFO-00</resultCode><resultMsg>NORMAL SERVICE</resultMsg></header><body><items&...

2 years ago

1 answers
16 views
0
Is there a convenient way to delete the text you want from Python?

a = '123456789'a[:-1]If you slice it like the above way, it's not a deletion price, but it's hidden? I lost and said, 12345678If you actually call the value, it's 123456789 even if it's shown. Whether...

2 years ago

2 answers
45 views
0
To count specific words in a Python string list

Housing houses did housing, Is it a problem that housing houses did housing? and That house is a harmful house.We have to count the number of housesThere are 9 in totali = 0Str = Household houses did ...

2 years ago

1 answers
14 views
0
Python, here's a question!

While I was implementing the algorithm,For example, a1 + b1 + c1 = d1a2 + b2 + c2 = d2.....a10+b10+c10=d10at the value of Among values between d1 and d10, Pick four randomly. You are about to change t...

2 years ago

1 answers
105 views
0
To write code to parse/crawl purchase reviews from open markets such as Python or R

I would like to know how to write a code that parses/crawls the purchase reviews of open markets such as Python or R.I did it like this when I picked Coupang's product list from R, but what can I do w...

2 years ago

1 answers
40 views
0
I wonder how to compare strings in Python.

I wonder how to compare strings in Python.str1 = teststr2 = testprint (str1 == str2)This is the case of comparing only simple matches, as shown above.When I searched, I couldn't find anything except =...

2 years ago

2 answers
46 views
0
How can I share my Python IDLE file with others like Google Forms?

As a school project, we are making a marketing survey like the Ideal World Cup.This is my first semester, so I'm a total beginner, and I've built an ideal World Cup,It's tkinter. It's a bit sloppy in ...

2 years ago

1 answers
90 views
0
Python annotation #

I'm a beginner at Python. I know Python annotations are there to explain how to organize code that doesn't help coding at all like C, but to encode text as utf-8 when thrusting it # -*- coding: utf-8 ...

2 years ago
« - 293 - »

© 2024 OneMinuteCode. All rights reserved.