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
59 views
0
Python for Moon

Trying to create a program to find specific characters in a stringPlease point out the errors=input('sentence:')w=input ('Find words:')for i in s: if i==w: print (i+'found at position') else: pri...

2 years ago

1 answers
23 views
0
Python Question - Add each digit of an integer

For example, if you have a number of 1,2345 (13,445), I'm going to divide this number by 1+2+3+4+5 (total 15) and add it up, what should I do?

2 years ago

1 answers
18 views
0
C++ invocation via Python Ctypes

Hello, everyoneYou want to import the main() function of the C++ file into ctypes and express it as a Tkinter module with the name c_main().I want to put the contents that appear in the cmd window int...

2 years ago

1 answers
22 views
0
Python basic help, please crying

The IDs of 10 users were given, and their passwords have not yet been designated. As the system is released, each user is asked to enter a password when it is first logged, and from the second login, ...

2 years ago

1 answers
21 views
0
Python Surround Sound Control and Analysis

I'm going to analyze sound in Python.First of all, I'm trying to analyze the sound location or distance by playing the surround file on the PC, but I can't find it even if I search on Google, so I'm a...

2 years ago

1 answers
20 views
0
To convert python str data to dict type

Hi, everyone.While analyzing the data, there is a problem that cannot be solved no matter how much you googled!In the chord below,Data and data1 are both str types, and the structure looks similarData...

2 years ago

2 answers
109 views
0
It's a Python coding problem, what should I do?ㅜㅜ

Fruit stores sell pears, grapefruit, melon, and persimmonsStock quantity and unit price in advance fruit = {'bae': [2, 1000], 'grapefruit': [1, 2000], 'Meron': [1, 8000], 'Gam': [6, 800]} stored in Ou...

2 years ago

1 answers
56 views
0
Python, error putting comb result list using recursion.

It's a situation that's caused by a lack of understanding of recursive functions, but it's not resolved

2 years ago

2 answers
55 views
0
Python regression code question.

from sklearn.datasets import load_bostonboston = load_boston()from matplotlib import pyplot as pltplt.scatter(boston.data[:,5], boston.target, color='r')import numpy as npx = boston.data[:,5]x = np.ar...


2 answers
88 views
0
Is it possible to put various conditions in the form of a list in the if conditional statement?

def chat(): print('start chatbot') while True: inp = input(user :) ifinf == End: print ('Exit chatbot service') break data = Hello or Hi if data: print(How may I help you?) else: print('Will ...

« - 249 - »

© 2024 OneMinuteCode. All rights reserved.