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
56 views
0
Can I process events that JavaScript used to do through Django?

It's exactly what the title is. I have to program what event is processed when I press a button on the web, but I have to link it with Python's Keras, so I'm going to develop it through the Django fra...

2 years ago

2 answers
21 views
0
[Python] Invoking multiple functions

def a(): print('1')def b(): print('2')Assume that there are two functions, a and b above.If the variable is stored in the list c = ['a', 'b'] str, is there a way to call both functions a and b in the ...

2 years ago

2 answers
19 views
0
[Python] Nth item, Nth square

def abc(array, N): if array[N] in array: return array[N-1]**N else: return (-1)print(abc((1,2,3,4,5,6),3))The result is good up to 5, but why does the result get weird from 6?

2 years ago

1 answers
21 views
0
To find a location that meets the conditions with Python sequential search???

f=open('data.txt', mode='r', encoding='utf-8')lines = f.readlines()print(type(lines))print(lines)print(lines[1])start = int (input (enter start: )))last = int (input (last time input: )))lst=[]for i i...

2 years ago

2 answers
72 views
0
Python specific sheet price data resample

import panda as pdimport numpy as npimport datetimeimport sysfrom openpyxl import load_workbook sys.path.append(C:\\pytest)df= pd.read_excel('C:\\pytest\\dailyprice.xlsx', sheet_name='dprice')No_List ...

2 years ago

2 answers
19 views
0
[Python] The full screen in the pie game

I'm not familiar with this because it's English even though I googledHow do I get a full screen when I press a certain key in a pie game?

2 years ago

3 answers
18 views
0
[Python] Use a variable whose name is 'Value in Variable List'

I'm a beginner who started Python last night. I know the basics because I did a little bit of C before, but it's a little harder than I thought. First of all, I'm sorry that the title of the question ...

2 years ago

2 answers
115 views
0
I have a question for you, Python for Moon.

I brought the For Moon to Gugudan.When printing from the first stage, I would like to adjust the interval between the steps with interval, first output from the first stage, and lastly output from the...

2 years ago

3 answers
140 views
0
Reverse by Python string word

Hello, it's nothing but a = input()print (a[::-1])For example, how are you is uoyera woh.I'd like to make each spelling upside down, not backwards, but backwards based on spacing.If it's how are you, ...

2 years ago

1 answers
64 views
0
Python crawling: When deleting tr elements on the first page, they are also deleted on other pages.

Hello.There are pages 1 to 3, and only the first tr element is erased in the image above page 1 I want to import data, but if I erase it with deltr[0], tr[0] on page 2 and 3 will also be deleted.How c...

2 years ago
« - 351 - »

© 2025 OneMinuteCode. All rights reserved.