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
105 views
0
File name split

dt_list = glob('*.jpeg')dt_list1 = str(dt_list('_'))AttributeError: 'list' object has no attribute 'split' There is an error when I load the picture file and split the name string, do you know how?

2 years ago

1 answers
15 views
0
I have a question about the deletion and separation of sentences in Python text

with open('./Text/The Little Prince.txt', 'rt', encoding='UTF8') as prince: text = prince.read().replace('\n', ' ').replace(' ', ' ')

2 years ago

1 answers
141 views
0
I have a question about KONLPY KKMA error. No matching overloads found for kr.lucypark.kkma.KkmaInterface.morphAnalyzer(list)

KONLPY's KKMA is in use, and I put the text listed in the list, and there is an errorI didn't know how to solve the error, so I asked you this question Thank you

2 years ago

1 answers
54 views
0
Python type error

Hello, I am making a web server with [email protected]('/licanse/minus/<licanse_c>')def minus(licanse_c): licanse_find = list(db.user.find({licanse: licanse_c}, {'_id': False})) if licanse_find ==...

2 years ago

1 answers
43 views
0
Can I get a text file from Python and put it in the existing Excel file?

Hi, how are you?I calculated using Jupiter's laptop, made the calculated results into a data frame, and stored them in an Excel file.After that, I tried to put the method used for calculation and the ...

2 years ago

1 answers
20 views
0
Python np.where Multiple Questions

import randomimport numpy as npprint(How many times would you like to simulate it?>> )n = int(input()) # Enter the number of simulationsprint(How many products do you have?>> )q = int(inpu...

2 years ago

1 answers
42 views
0
Discord.py (discord.py) Specific Role-Ban Question

How do I ban everyone with a specific role in discode?

2 years ago

1 answers
52 views
0
Is there a way to load the npy in the folder at once?

It's hard to get it because I have to do location + file name if I do np.load.

2 years ago

1 answers
16 views
0
I would like to know how to replace all the strings I want with nan values

s3 = Series ('Seoul', '', 'Daejeon', 'Daegu', '!', 'Busan')s3.place('Seoul', 'Daejeon', 'Daegu', 'Busan', np.nan)I know how to change Seoul, Daejeon, Daegu, and Busan to NanI don't know how to change ...

2 years ago

1 answers
17 views
0
Python random character + number extraction

Hello, I am a student who studies Python hard these days.It can be a random number or a random text, but I'm writing a question because I think I need a tip to go to the advanced stage by mixing it.im...

2 years ago
« - 440 - »

© 2024 OneMinuteCode. All rights reserved.