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
80 views
0
Number of input channels does not match correcting dimension of filter error in Tensorflow

I'm writing a program on Tensorflow.number of input channels does not match corresponding dimension of filter, 2!=11 The error appears.The program is attached below.def make_test(self): inputs=Input(s...

2 years ago

1 answers
52 views
0
kivy, Python, when running, nothing on the screen

The program below aims to use kivy to extract and output data based on keywords from the database.The problem is that the Top_Screen that starts first is not displayed.I would like to know why this is...

2 years ago

1 answers
87 views
0
I want to create a two-dimensional map using python.

I would like to graph the intensity in the z-axis direction on the xy plane using two-dimensional mapping.At that time, I imagine that the dots between the data will be interpolated and connected smoo...

2 years ago

1 answers
20 views
0
I want json to be true [closed]

Do you want to improve this question?Edit your post to clarify the issue you are trying to resolve by adding details.Closed 4 years ago.4 years agojson={Hi:true}I would like to make this Hi true to be...

2 years ago

1 answers
137 views
0
Get subprocess.Popen stdout and stderr in real time

After processing the contents of stdout and stderr of the child process with python's subprocess.Popen, I would like to output them to the parent's stdout and stderr in real time and in order, respect...


1 answers
41 views
0
I want to import multiple modules in Python 3.7 and pass values to each module in the interaction.

I'm a beginner at python.I would like to import several modules as below and use them in for, but I checked how to pass the value, but I couldn't find it.Professor, please.Below, we process multiple i...

2 years ago

1 answers
24 views
0
Implementation of a differential equation (Shooting method) in Python by varying the initial and eigenvalues

As the title suggests, it takes a lot of time to find a combination of \vec{z}'=f two-story differential equation (which is in the form of a differential equation of a first-order vector) that changes...

2 years ago

1 answers
18 views
0
Everything containing print() in python gets an error

No matter how simple it is, print() will cause all errors.The same goes for copying from a beginner's site.

2 years ago

3 answers
19 views
0
Understanding How to Convert Multidimensional Array Table Data Using Python's Reduce()

I often use PHP to convert records retrieved from the database as follows:<?php$list = array( array(GROUP=>A, NAME=>Apple, COUNT=>1), array(GROUP=>A, NAME=>Gorilla, COUNT=>2), arr...

2 years ago

1 answers
71 views
0
Specifying the Contents of a json File

The contents of the json file are:{ version: 1.2, people: [ { pose_keypoints_2d: [ 570.599, 272.875, ..., 292.453, 0.616146 ], face_keypoints_2d: [ 416.352, 227.967, ..., 213.009, 0.822855 ]...

2 years ago
« - 98 - »

© 2024 OneMinuteCode. All rights reserved.