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
74 views
0
Related to Python for Moon

import mathimport numpy as npimport matplotlib.pyplot as pltdef Nutzlast(time): t1 = time #[s] _________________________ Required Values and Formulas _________________________ nutzlast = ((m_b2 - (0.0...

2 years ago

1 answers
47 views
0
This is a curling question using selenium and beautiful soup.

Hello, I'm a beginner who is practicing automatic login and crawling using Python. I tried to crawl the information I wanted by logging in to a specific site, but it was blocked.I logged in automatica...

2 years ago

2 answers
69 views
0
It's a question about the Python list

Hello. I have a question while studying comparing two lists in Python.num_1=[2,8,3,4,5]num_2=[4,6,3,1,3]print(num_1<num_2)I wrote and executed the code like this, and True was printed. By the way, ...

2 years ago

1 answers
50 views
0
Please tell me how to execute the TensorFlow 1.x version code

I received the following code, but it is a TensorFlow 1.0 version of the code, so I keep getting errors as I run it in 2.4.1 version.I know it doesn't support session and placeholder, but I don't know...


2 answers
14 views
0
Convert a number in the list to text

Given a list such as [1, 2, 3, 4], 1 = '1'2 = '2'3 = 'a'4 = 'b'Is there a way to return specific characters to a specific number?The desired result value is['1','2','a','b'] -> Finally, I want to p...

2 years ago

2 answers
12 views
0
How to sort by ~~ 로 in Python?

I'm trying to sort with Python, how do I do it? (Sort by string array) (Example: list[0]President, list[1]Accusation => list[0]Accusation, list[1]President Kim)

2 years ago

1 answers
17 views
0
To add Python syntax errors and functions

btncmd = def read_all_file(path): btn1 = Button(root, width=20, height=100, command=btncmd)btn1.pack()There is a syntax error in the btncmd part, how can I solve it?

2 years ago

1 answers
73 views
0
Is it impossible to transfer functions to Python3 class?

class PrintFuncNum: def __init__(self, func): self.func = func def check(self, test): answer = self.func(test)test1 = PrintFuncNum(func) # You can put test*3 in the answer in the check part# Or I wo...

2 years ago

2 answers
14 views
0
TypeError: 'int' object is not subscriptable

I'm solving an internal problem, but there's an error called TypeError: 'int' object is not writable, what is this error?def solution(a, b): c = 0 for i in range(len(a)): a = a[i] + b[i] c = c + a r...

2 years ago

1 answers
14 views
0
Express a list of multiple lines in a single column

What method should I use to solve the list saved like the image above like the image below?

2 years ago
« - 405 - »

© 2024 OneMinuteCode. All rights reserved.