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
73 views
0
When using Python's OpenCV, if you call a function from another file, you will not be able to see the image.

If you call a function from another file, you will not be able to open the image.If you don't call, you can run it safely.No OpenCV is used for calling functions. from pathlib import Pathimport cv2I c...

2 years ago

1 answers
137 views
0
Results cannot be displayed in the web app created in Python (Bottle)

I'm a Python beginner.I would like to display the program I created in Python (simple calculation/mahjong library) in my web browser using the bottle framework.*Partial modificationsPython 3.8 and abo...


1 answers
84 views
0
Solution questions regarding RunTimeError for Pythorch in-place operations

The following code will cause an error. If you don't mind, I'd appreciate it if you could help me.I'm not used to asking questions, so I may not be able to do so, but I appreciate your cooperation.app...

2 years ago

1 answers
144 views
0
I want to use Selenium to start Firefox.

symptomsWhen I run the Python code below in the Jupiter Notebook that I opened in VSCode, an error appears and Firefox cannot start. from selenium import geckodriverImportError Traceback (most recent ...


1 answers
117 views
0
Is it okay to follow the robots.txt on YouTube and access it from the program?

Creating a BOT to regularly access YouTube using Python requestsYouTube's terms and conditions say something like thisTerms of Service: https://www.youtube.com/static?template=terms&hl=en&gl=U...


3 answers
85 views
0
Best language for extracting the same lines for multiple tab-separated files and putting them together in a new folder

I would like to take a specific line from a tab-separated multiple file (hereinafter called dat file) that stores multiple matrix data in the directory, and then arrange the row data in the order in w...

2 years ago

2 answers
37 views
0
a method of combining vertical numbers into a single list

12345678910 with the words [1', '2', '3', '4', '5', '6', '7', '8', '9', '10']I'd like to convert to , what should I do?

2 years ago

1 answers
80 views
0
I want to change the size of the sea horn.

import csvimport pandas aspdimport numpy as npimport matplotlib.pyplot aspltimport seaborn as sns%matplotlib inlinedf=pd.read_csv('csv/gaku-mg1712_02_21ver3.csv', encoding='shift_jis', parse_dates={'d...

2 years ago

1 answers
82 views
0
No such file or directory is displayed in python.

I'm a python or programming beginner.I look forward to hearing from you.After writing the following code in atom, I saved it in my folder on my desktop as csvreader.py.import csvf=open(csv_example.csv...

2 years ago

1 answers
36 views
0
Understanding Python Functions

def(x): return x*2 result=f(2) print(result)When you enter , the number 4 does not appear in the result.What should I do?

2 years ago
« - 129 - »

© 2024 OneMinuteCode. All rights reserved.