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
Add Python Dictionary Value and Output to String

class HashMap: def __init__(self): self.vals = {} def insert(self, key, val): self.vals = {key:val} def __str__(self): result = '' for i in self.vals.items(): result = result + str(i) + ',' retu...

2 years ago

1 answers
68 views
0
ModuleNotFoundError: No module named 'astrophy.visualization'; 'astrophy' is not a package error question

As shown in the image next to it, I made a code to merge 3 photos using a package called Astrophy in Atom. However, the error Module NotFoundError: No module named 'astrophy.visualization'; 'astrophy'...

2 years ago

1 answers
113 views
0
This is a question about the module in use when converting Jupiter laptop ipynb file to py.

This is a question about the module in use when converting Jupiter laptop ipynb file to py.It can be converted to py. The problem is that the modules used (for example, modules such as pandas and nump...

2 years ago

1 answers
88 views
0
Where is the default save location for Python-SQlite3 files... Can the user modify the storage location...?

Hello, I am an ordinary person who learns programming as a hobby. I have a few questions for you.I'm going to use SQlite3 to store data made of pythons this time. conn = sqlite3.connect('Test.db')It's...

2 years ago

1 answers
126 views
0
Jupiter Notebook Loading Speed Issue

Hello, I'm a beginner at coding. I installed a jupyter notebook to learn tensorflow, but there is no speed problem in the laptop, but a file explorer?It's really too slow in the same window. I can't ...

2 years ago

1 answers
19 views
0
Python does not show a value for the argument.

For example, import winsoundwinsound.Beep(If you type (frequency, duration) with a yellow box at the bottom - a wrapper (hereinafter omitted)There are times when this message doesn't come up even if y...

2 years ago

1 answers
147 views
0
Python Web Crawling Questions

I'd like to get reviews by date on the Naver movie rating page.But it's too much traffic. Can you help me?


1 answers
37 views
0
I'm trying to log in to Python Selenium, but I can't click because of the pop-up image.

You are about to write a code that automatically logs in to the

2 years ago

1 answers
18 views
0
If you're confident with Python's regular expression, please ask a question!

First question import redef commaParse(num): return re.findall('(?=(\d{3}))',num)a = commaParse('100000000')print(a)Result: ['100', '000', '000', '000', '000', '000', '000', '000']Second question impo...

2 years ago

1 answers
64 views
0
How do I save data frame results extracted from the jupyter notebook as an Excel file?

Hello, as you can see below, I extracted some data from the excel file through Pandas, but what should I do to save it as an Excel file again?Here's a question.Thank you

2 years ago
« - 234 - »

© 2024 OneMinuteCode. All rights reserved.