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
60 views
0
Regarding the problem of not displaying the number of axes when using matplotlib

When I created a graph using matplotlib, I am troubled that the scale of the y-axis is not displayed.I would like to create a graph with the y-axis as log scale using the following code, but when I tr...

2 years ago

1 answers
36 views
0
What is the reason why the list does not appear?

fruit=[apple, orange, pear ]fruitI'm self-taught and studying from scratch, but when I execute the above code as shown in the book, nothing appears in the dialog shell.I'm sorry about this basic thing...

2 years ago

1 answers
16 views
0
I want to put True in the array in the if statement.

I'd like to put True in the array in the if statement.circle_lists=[0, 10, 30], [5, -10, 30], [100, 10, 20]]overlap_list = [False]*len(circle_lists)def calc(array): for i in range (len(array)) : for j...

2 years ago

1 answers
18 views
0
Python's cis library cannot be imported

How do I import cis in Python?

2 years ago

1 answers
64 views
0
object recognition in an image using python

We use Python (WinPython 3) and OpenCV for image processing programming.What should I do to make the building in the image recognized in the image taken with a digital camera?Specifically, if there ar...


1 answers
103 views
0
Want to Automate Uploading of csv Files (RPA)

I would like to automatically upload csv files by automatically operating the software called GRC in the search ranking check tool.I used python's pyautogui and pywinauto libraries.I'd like to registe...

2 years ago

1 answers
42 views
0
Time Limit Exceeded with Brute Force in LeetCode

I started LeetCode.As soon as possible, there was an error in Twosum, so please let me know.First, I wrote the following code in Brute Force.class Solution (object): defaulttwoSum(self, nums, target):...

2 years ago

1 answers
47 views
0
I want to create a new array by randomly extracting rows from the list [overlapping]

(Two answers) Last yearI have a matrix list of 100x3 as shown below.There are two things you would like to do with this matrix:·I would like to randomly extract two lines at any number of times (e...

2 years ago

1 answers
33 views
0
How to write conditional branching in the contents of an array when the array is used as an argument in the Python function.

I would like to use Python 3.6 to create a function that changes the output according to the contents of the given array.input_data=[1,2,3]defequ(x):Value for each element of ifx > 2: return x +3el...

2 years ago

2 answers
16 views
0
Sample Periodically Invokes Processing in Python Threading.Timer

I rarely use Python, but when I was looking at my friend's code, I found something strange and found a problem.http://bty.sakura.ne.jp/wp/archives/71For example, import threadingdef hello(): print hel...

2 years ago
« - 142 - »

© 2024 OneMinuteCode. All rights reserved.