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


4 answers
41 views
0
Download Python Selinium File

I'm currently trying to download a file to Python Cellinium.Using import os,I even succeeded in renaming the file Rename does not work if the file name has the same symbol as the special character.It ...

2 years ago

3 answers
18 views
0
I know break doesn't work in the if statement,

Question 4The criteria for obtaining a type 2 ordinary driver's license are as follows.1) writeten_test (department test) 60 points or more2) function_test (function test) 80 points or more3) road_tes...

2 years ago

1 answers
15 views
0
What is the difference between conda and pip?

There is a case of installing a package this time, but when installing a new package in a Windows environment, I used pip to install it, but there is something called conda. Is there any difference?

2 years ago

1 answers
21 views
0
I'd like to download files continuously from the web.

There are too many files and I have to click them one by one.There's only a little Python that can you can doI've used urlib or wget, but I don't have a clue.Do you have any code that you use to downl...

2 years ago

1 answers
56 views
0
Raspberry Pi3 error 500 Internal Server Error

I just started raspberry pie. I'm building a web server while reading a book, but there's an error.Here's what the error says.Internal Server ErrorThe server encountered an internal error or misconfig...


2 answers
106 views
0
How to use Python gTTS

I'm trying to use gts module in Python import os from gtts import gTTStext_to_read = Hilanguage = 'ko'slow_audio_speed = Falsefilename = my_file.mp3def reading_from_user(): user_input = input (What sh...

2 years ago

1 answers
51 views
0
Error sorting data from multiple Excel files with Pandas.

Hello! I'm an engineering student who's just learning Python.I tried to hang on while googling in my own way, but I can't even die.I think it's because I don't have the basics yet. I'd really apprecia...

2 years ago

1 answers
97 views
0
Can I catch multiple exceptions per line?

I want to do the same thing for err1 and err2Do I have to write it separately like that?try: # Error Codeexcept err1 : passexcept err2 : pass



1 answers
42 views
0
A function that determines which index a particular character appears in a string

Where is the function to find out which index a particular character appears in a string?For example, mystring = hellomyindex = mystring.h #myindex = 0I'm looking to this function.

2 years ago
« - 340 - »

© 2024 OneMinuteCode. All rights reserved.