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
14 views
0
If you type Python incorrectly, it repeats

while True: def std_weight(height,gender): ifgender == Men: return height * height * 22 elifgender == Woman: return height * height * 21 else: print(You have entered it incorrectly.) breakprint(...

2 years ago

1 answers
145 views
0
How do I run cmd in Python code so that it is automatically entered?

Hello, I have a question.To run the program now, turn on the virtual environment in cmd, go to the appropriate folder path, and then python run.The program runs only when you run py.We found the os mo...

2 years ago

1 answers
62 views
0
pandas read_html execution error, importError: lxml not found

Hello, I am a beginner developer who is studying Python.I was doing an example to retrieve stock information, but an error occurred in read_htmlI don't know the cause.Masters, please help me.import pa...

2 years ago

1 answers
45 views
0
Classify classification of class data in Excel

Hello, I'm posting my first question!Excelor students - Name of course - Subject classification like thisThe student is literally a,b,c,d...The major categories are AI, planning, marketing...It's divi...

2 years ago

1 answers
13 views
0
Find the order position of a particular value in the pandas dataframe?

import pandas as pda = pd.DataFrame({'value': [0, 1, float('nan'), 3, 4, float('nan')]I would like to find a location with the nan value in a above. indexWithout using the valueFirst of all,a['value']...

2 years ago

1 answers
15 views
0
Python Save All Array Values as Text

print('z= ' + str(encoded_imgs))f = open(test.txt,'w')f.write(str(encoded_imgs))f.closeI would like to save the array as text using this grammar.However, because there are too many contents of the arr...

2 years ago

1 answers
43 views
0
Web Image Crawling Question.

Hello.When studying Python web crawling, use the findall function and after F12 > ctrl + shift + cI don't know what to put in the HTML structureI have a question.The site is https://chilgok.fowi.or...

2 years ago

1 answers
13 views
0
Find Python Matching Numeric Locations

Hi, everyone.I'm a beginner at Python If the stored data matches a number that is the same value as the number of times you enter it, I'd like to print out all the matching numbersStored data (data.tx...

2 years ago

1 answers
54 views
0
I have a question regarding the problem of installing Pandas in Python virtual environment.

I installed Pandas in Python virtual environment folder, but I wonder what the problem is with the error.cryingTerminal error

2 years ago

1 answers
110 views
0
Is there a way to add crontab in Python language in Ubuntu environment?

I want to change the cycle setting of crontab or executable setting flexibly using pythonIs it possible?

2 years ago
« - 377 - »

© 2024 OneMinuteCode. All rights reserved.