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


2 answers
17 views
0
It's a Python question.

Six natural numbers are input in order, a list is generated, and then output. Then, the rearranged list is printed according to the following rules.[Example 1]526431[Example 1][5, 2, 6, 4, 3, 1][5, 3,...

2 years ago

1 answers
19 views
0
It's a question for Python's regular show!

I want to find three UAA UGA UAGs, so I don't know how to search A and U[AG]A and UAG, do I have to find them like this?

2 years ago

1 answers
122 views
0
Find out computer specifications with python

I want to find out the specifications of the computer with Python.For example, May I know how?

2 years ago

1 answers
107 views
0
I'm trying to save the Python graph as a picture, but it's

// Enter code here'''Relationship between distance and tensile force between two objects'''from pylab import figure, axes, pie, title, savefigimport matplotlib.pyplot as plt#Draw Graphsdef draw_graph(...

2 years ago

1 answers
120 views
0
I can't do the questions while studying Python class. The wrong place

I'm studying about Python class!I defined the class and proceeded, but it was executed, but the result didn't come outI ask for your help me.class myObj(object): def set_value(self, item): self.item=...

2 years ago

1 answers
14 views
0
Python Workspace Variable Clear Commands

I'm studying Python, but I opened and closed many py filesQuite a few variables have been created in the workspace variable list.In the case of matlab, if you type the clear all command, the variables...

2 years ago

2 answers
17 views
0
I have a question for Python beginners. Open cp949 error and Python .py scripts

1: https://res.cloudinary.com/eightcruz/image/upload/v1542263102/bwjuvefzfojq**strong text**qi8bksjp.jpgHello, I'm a beginner.I thought it was a Python version problem, so I tried to run it in various...

2 years ago

1 answers
44 views
0
I have a question about removing special characters from Python.

pattern='[\W]'text = re.sub(pattern, ' ', text)I don't want to remove the word 'as in isn'taren't it's, but what can I do?ㅠ

2 years ago

1 answers
16 views
0
I have a question for Python.

def create_grid(locked_positions = {}): grid = [[(0, 0, 0) for x in range(10)] for x in range(20)] for i in range(len(grid)): for j in range(len(grid[i])): if (j, i) in locked_positions: c = locke...

2 years ago

2 answers
44 views
0
django cannot import * problem

I'm developing a site, but there's an error in the process of creating a login, how do I solve it ㅠ

2 years ago
« - 217 - »

© 2024 OneMinuteCode. All rights reserved.