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
95 views
0
pip list, pip-V command error resolution questions

There is currently a problem with the pip list and the pip --version commands, but I don't know how to solve them.pip ---version command When pip install type because there is no typing module for pip...

2 years ago

1 answers
17 views
0
Find the width of Python shapes

I'm trying to create a program that lists the content in the text file to find the area of the shape that fits the shape and coordinates of the content, but I get an error saying that it's out of the ...

2 years ago

1 answers
17 views
0
Python How to output words that start with a specific string and end with a specific string

You want to write a program that reads the text file contents and then receives a string to extract words that end with a specific character 2 that starts with a specific character 1.The text file is ...

2 years ago

1 answers
71 views
0
Create Python executable in Raspberry Pi

1) I want to create a Python file from Raspberry Pi as an executable file, what should I do?2) Is it right to install PyInstaller in Raspberry Pie and make it with this?


1 answers
72 views
0
Program ValueError: Could not convert string to float when entering the enter key

total=0 def readAndTotal(): global total num=float(input('Enter a number')) if num !='': total+=num return readAndTotal() else: return total total = readAndTotal() print(The total of all those ...

2 years ago

1 answers
19 views
0
Python NameError: name 'area' is not defined

A program that saves the contents of a text file as a list to obtain the width of the shape through the list value.import mathL = []import ospath = C:/tempfilelist = os.listdir(path)f = open(MP09data....

2 years ago

1 answers
37 views
0
Change Array

I was looking at a code, but I couldn't because I was trying to change the resolutionprint (color_image.shape)If you do, you get (720, 1280, 3) results. I'd like to change this friend to the result of...

2 years ago

1 answers
20 views
0
To determine a unified value with a Python for statement

fori in a: #a>> (True, False, True) If not neighbor.get_visited(): #Code that stops if multiple a has a value that is false breakCode to be executed once (...)I want to check all the values in ...

2 years ago

1 answers
71 views
0
Python-related concept questions 1. Meaning of the list as dir 2. Meaning of str, int as class

Hello, I'm an introvert to Python.Recently, I've been coding through various questions and studying Python concepts, and I'm leaving a question like this because I have a question. I'm sorry it's a bi...

2 years ago

1 answers
18 views
0
Please tell me the syntax error

x=int (input: )y=int (input: )n=0while x>=y: x=x-y n=n+1print(Part =,nRemaining =,x)I made a program to divide the task into tasks and save the shares and the rest with repetitive sentences without...

2 years ago
« - 417 - »

© 2024 OneMinuteCode. All rights reserved.