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


2 answers
154 views
0
Want to run discord.py in parallel thread

I'm making a Bot like this.Bot greeting every dayYou can set what time and what time to greet each buildI'm thinking of using the while True loop on_ready, but the problem is that there are so many no...

2 years ago

1 answers
19 views
0
NameError Appears

I would like to execute the following code, but an error appears.I would appreciate it if you could tell me how to solve it.The original code can be found in data-science-from-scratch/nearest_neighbor...

2 years ago

1 answers
45 views
0
How to create your own dataset for Tensorflow from the List

Deep learning on Python using Tensorflow I am currently using tf.data.experimental.CsvDataset to load the learning data set from the CSV file.Each CSV file was created before Tenforflow started, but e...

2 years ago

1 answers
16 views
0
I want to find a combination using itertools in a three-dimensional array.

I'm thinking of finding a combination using itertools in a three-dimensional array.I would like to find the total combination of li1[i] to choose one by one. li1 = [[0,2], [0,1,2]], [[3]], [[7, 9]...

2 years ago

2 answers
107 views
0
Is there a way to create a powerpoint in Python?

Questions about how to create a powerpoint using Python.[MATLAB] Automate creating PowerPoint slides using templates: MATLAB Report Generator Edition - Qiita Like MATLAB, I would like Python to replac...

2 years ago

1 answers
75 views
0
I want to launch server.js for server side rendering on the Python-based Google App Engine.

I would like to run angular-universal on a Python-based Google App Engine. npm run build will create a server folder containing server.js and server-side js files for Server Side Rendering, as well as...


1 answers
36 views
0
How to Change the Current Directory

Hello, this is my first time to ask you a question.I am a beginner, so I would appreciate it if you could teach me.importosos.getcwd()Now you know the current directory C:\\Users\\○○\\Documents\\suras...

2 years ago

1 answers
76 views
0
How to Scrap Each Site from a URL List

You have the code to create a URL list by scraping sites, and you have the code to scrape only the attributes of individual sites.The URL list shows the URLs of individual sites, but how do I connect ...


1 answers
45 views
0
AttributeError: About module'tensorflow_core.summary'has no attribute'FileWriter'

Running the following codeAttributeError: module'tensorflow_core.summary'has no attribute'FileWriter'appears.I wonder whyimport tensorflow as tftf.compat.v1.disable_eager_execution()a=tf.constant(10,n...

2 years ago

1 answers
46 views
0
I would like to use the manufacturer's list for each product in Pandas in advance and identify and automatically input the manufacturer from the product details in the purchase list.

I would like to do the following with Pandas.DataFrame 1 DataFrame1 is a purchase listA, B, C, and D are the names of the products.% should be irrelevant characters and numbersDataFrame 2 <What do ...

2 years ago
« - 155 - »

© 2024 OneMinuteCode. All rights reserved.