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
261 views
0
I can't solve the simultaneous equation in Python.

I solved the simultaneous equation and entered the following and ran it, but I couldn't say anything at all.What's wrong? from numpy.linalg import solveleft = [[2,1], [1, 3]]right = [1,13]print(solve...

1 years ago

1 answers
414 views
0
python import error

To manage passwords when logging in with FlaskAs I use werkzeug, I write as follows, but I get an import error.I've been looking into various things today, but I don't know what's wrong.Thank you for ...

1 years ago

2 answers
490 views
0
I want to speed up the process of integration and linear storage in Pandas, numpy.

I'm creating software for numerical analysis on Python, but it takes time and I want to speed it up.After analyzing with cProfile, we found that the following two functions, integr() and scipy's inter...

1 years ago

2 answers
350 views
0
I want to speed up the process of integration and linear storage in Pandas, numpy.

I'm creating software for numerical analysis on Python, but it takes time and I want to speed it up.After analyzing with cProfile, we found that the following two functions, integr() and scipy's inter...

1 years ago

1 answers
299 views
0
Time stops when the Python timer button is pressed

I'd like to make a timer for school special activities.I made the time count and the buttonsI don't know how to stop time when the button is pressed.I'm applying what I've learned, so I'd like to add ...

1 years ago

1 answers
308 views
0
How do I implement automatic login in a Python Jango framework environment?

Hi, how are you?On the web page of the Python Jango framework environment,When you click a specific link after logging in as a user named AWith the user account information named B stated on the link,...

1 years ago

1 answers
424 views
0
Python binary search tree

In this way, I want to create a program that uses Python binary search trees to store contacts, how should I do it?


1 answers
289 views
0
Masters, please give me the code for making Python Excel file

In short, I want to create an Excel file that stores all phone numbers, but it's a phone number that doesn't have more than three digits in xxxx or yyyy.

1 years ago

1 answers
388 views
0
JPGE image is not displayed in Tkinter

What's troubling youThe JPEG image is not displayed on Tkinter.png images and ico images are recognized, but only jpeg is impossible.I have installed the pillow before executing the code, but it doesn...

1 years ago

1 answers
336 views
0
Tkinter Does Not Reflect Images

What's troubling youI'm trying to make software with python using Tkinter, but I can't see the image when I type the code.Put the py file and the image file in the same folder and select the image fil...

1 years ago
« - 16 - »

© 2024 OneMinuteCode. All rights reserved.