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
18 views
0
About Chrome web drivers

I'm trying to log in automatically with python, but I stumble when I start chrome using the Chrome web driver first.The implementation is done through Google collaboration.os is windows 10The chrome v...

2 years ago

1 answers
16 views
0
Replacing data with numpy

X = {x1, x2, x3, x4, x5}Y = {y1,y2,y3,y4,y5}There is a series called This data corresponds to x1 and y1, x2 and y2, respectively, and I would like to change the order in ascending order with the value...

2 years ago

1 answers
36 views
0
ValueError: The truth value of an array with more than one element is ambivalent.Use a.any() or a.all() error appears.

This is my first time asking a question.I'm a beginner, but I appreciate your cooperationIf you run the program below, you will see the results below, and you will not see any improvements.I'm asking ...

2 years ago

2 answers
45 views
0
I want to manage 4D arrays with pandas.

Just like the title.When the L-dimensional vector x is generated using i, j, and k as parameters, I'd like to arrange the X vector components in the column and display the index as a combination of i,...

2 years ago

2 answers
46 views
0
How to Calculate Each Row of a Matrix in a For Loop

There are 201 vectors of length 3575 and they are stored in the numpy.ndarray format. For ease of explanation, use x.I'd like to calculate for each line of this x, a vector whose shape is (13575), but...

2 years ago

1 answers
52 views
0
Digitize csv files in python

Downloaded time: 11/11/2019 16:04:33 staying overnight at a templeWind direction (m/s) per hour (month/day)2016 12 23 5 9.6 West2016 12 23 6 9.8 West2016 12 23 7 10.6 West2016 12 23 8 10.4 West20...

2 years ago

1 answers
32 views
0
I would like to know how to import only variables from web apps.

Check Python to see if your Twitter account is bot now.I'm writing a program called bot or not, and I found a web app called bot or not. I'd like to use python to automatically process it and bring th...

2 years ago

1 answers
87 views
0
Combine videos with python

Objective: I want to combine multiple mp4 videos with python.The video and sound are the same.The original movie is located in the movies_in folder in the same hierarchy as the executable.Comb_movie()...

2 years ago

2 answers
61 views
0
One-dimensional error occurs in Pandas.

array([-1, 0, 1, 1, 1, 0, 2, 3, 4, 5, 6, 7, 8, 7, 0], [-1, 9, 10, 11, 12, 11, 13, 11, 14, 11, 15, 12, 16, 17, 18], [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...

2 years ago

1 answers
86 views
0
I want to get the value of the combo box placed in the Tkinter sub-window, but I get an error.

I just started programming.You can display windows and combo boxes, but when you select items in the combo box, you get an error.Below is the bit device type acquisition part.I've tried many things, b...

2 years ago
« - 168 - »

© 2024 OneMinuteCode. All rights reserved.