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
73 views
0
Python Jupiter laptop list Remove certain elements

I am a beginner in coding who is studying coding.I want to use Jupiter's laptop to get Naver's real-time game search wordI want to delete the '' part of the result.I tried using remove and split, but ...


1 answers
104 views
0
Error when crawling and downloading an image

You want to crawl the image url of books and save the image on the Yes24 site.While curling, how can I download both of them when img src contains and and


1 answers
12 views
0
label error, labels[-1], list index out of range

api_output = detect_text(frame) recoq = [] for text in api_output : recoq.append(text.description) # # print(recoq[0]) pattern = [0-9]{2}[ga-he]\s[0-9]{4} pattern2 = [0-9]{4} match_pattern = re.searc...

2 years ago

2 answers
16 views
0
A program that verifies that a specific string can be created from a Python string

For example, First of all, you get two stringsAlice in wonderlandAciwlThis is how you get the inputThe string Aciwl is a string that can be created by just a few guys from Alice in Wonderland, so the ...

2 years ago

3 answers
43 views
0
I'm trying to remove a zero value from the Python list

for i in range(10,100): list_2.append(i)for i in range(100,1000): list_3.append(i)for i in list_2: str1 = str(i) for j in range(2): if int(str1[j]) == 0: list_2.remove(i)for i in list_3: str2 = str(...

2 years ago

1 answers
44 views
0
Python open source error question

import requests,sys,time,os, argparsedef main(): os.system(clear)parser = argparse.ArgumentParser()parser.add_argument('-d', help='path to file of domain list', nargs=1, dest='domain', required=True)p...

2 years ago

4 answers
17 views
0
Python set vs list

What is the difference between a set and a list?

2 years ago

3 answers
14 views
0
To determine if each digit of a Python number is odd

a = 1234567list_1 = []odd_num = [1,3,5,7,9]for i in range(0,len(a)): if a[i] in odd_num: list_1.append(i)I want to make sure that each string a is an odd number (for example, to find 5791 and 753 and...

2 years ago

1 answers
19 views
0
Ask about Python Dunder method.

class Food: def __init__(self,taste,calorie): self._taste = taste self._calorie = calorie def __gt__(self, other): if self._taste == other._taste: return(self._calorie < other._calorie) else: ...

2 years ago

1 answers
113 views
0
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte.

Hello, I'm a high school student who is running the code due to school assignments. https://github.com/Bengemon825/TF_Object_Detection2020 I received an example from the link above and changed the dat...

« - 382 - »

© 2024 OneMinuteCode. All rights reserved.