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
(Python) Release sites that are automatically logged out over time

Hello, everyone I'm Parin, who started Python with self-study and search.I made a program that automatically logs in to the Internet banking site and Hometax using Selenium.After auto-login, if you lo...


1 answers
100 views
0
You want to define a tokenize function that obtains the Python N-gram.

Hello, I'm studying Python functions.You want to define a function called tokenize, but you want to create a function that will change 2-gram 3-gram depending on N in the parameter. def tokenize(trg, ...

2 years ago

1 answers
46 views
0
Python: Curious about making lists with dynamic variables.

Hello, this is Corinne. I want to implement one, but it doesn't work.What I want to implement is So the final goal is to split an arbitrary list into the number you enter, and to bind an automatically...

2 years ago

1 answers
102 views
0
I'm making a macro, but I don't

I'm totally a novice. I tried to make it quickly with a jupyter notebook, but it doesn't work.When coordinate 1 turns white, press coordinate 2 button import keyboardimport clickimport timeimport pyau...

2 years ago

1 answers
54 views
0
I want to know how discord.py can store users in variables

I want to make a game with discode bot+ Participation saves the user in the variable p1 I want to make the user save in the variable p2 when I type + Participation 2.How can I store users in variables...

2 years ago

3 answers
54 views
0
What is a good code for counting the same value values in Python list-map data?

origin = [ {'pk':1, 'attr':'MAN'}, {'pk':1, 'attr':'WOMAN'}, {'pk':1, 'attr':'BOY'}, {'pk':1, 'attr':'MAN'}, {'pk':1, 'attr':'MAN'}, {'pk':2, 'attr':'MAN'},]result = [ {'pk':1, 'MAN':3, 'WOMAN':1, 'BO...

2 years ago

1 answers
44 views
0
Binarysearch Problem Questions

In an ordered two-dimensional list, you want to use binary search to create an algorithm that outputs true if desired, and false if not.matrix = [ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 50]]def ...

2 years ago

1 answers
18 views
0
How to import a list of python txt files and modify a specific string...

Currently, I have to change 21 of those txt files to 2, what should I do with Python?I think it's going to work, but I'm struggling because it's not working. Please let me know.

2 years ago

2 answers
46 views
0
I have a question regarding the function in Python.

def income_sheet_Y(code): # Importing data fs_rpt_url = http://comp.fnguide.com/SVO2/ASP/SVD_Finance.asp?pGB=1&gicode=A{}&cID=&MenuYn=Y&ReportGB=&NewMenuID=103&stkGb=701.format...

2 years ago

1 answers
83 views
0
python) split txt file To save as multiple files

How to load a txt file, divide the sentence, and save it as multiple txt files For example, if there are 10 sentences in the txt file and you want to divide them into 2 or 3 files,If you divide 10 sen...

2 years ago
« - 404 - »

© 2024 OneMinuteCode. All rights reserved.