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
158 views
0
I want to use Google vision api for images on the web, not local.

I would like to use Google vision api to ocr images on the web.Image Path = test.jpgLocal data such as can be read.Image Path = https://example.com/test.jpgIf so, it will be an error occurs.I would li...


1 answers
20 views
0
I want to get the current PC's Grabo (GPU) name in Maya+Python (including OpenMayaAPI).

I am currently working on a system that prints log information on Maya, but I am looking for a way to get the name of the GPU (GeForce GTX, etc.) by Maya alone without using external software or libra...

2 years ago

3 answers
20 views
0
I want to find the index of the minimum index.

I'm at a loss because I don't understand this problem.Find the minimum value from the stth to the last element of the array, but find the index, not the minimum value itself.Enter the code in [Write H...

2 years ago

1 answers
116 views
0
I implemented it with Logistic Regression, but the acuity is low at around 20%.

I have implemented a neural network with Logic Regression, but the correct answer rate is too low, so I want to fix it.Input x is shape(1,64) and y is the array of shape(1,6) in the label. I tried cha...


1 answers
152 views
0
Learn more about additional Word2vec learning.

Ask about additional Word2Vec learning.If we learn a corpus once, generate a vector, and then add an unknown word to the corpus, do we need to relearn the corpus from scratch to vectorize the unknown ...


1 answers
55 views
0
I want to change the legend location in pandas.plot

I made a stock price graph using pandas.plot, but the legend is in a strange position.If it's matplotlib, I think I can adjust the position by specifying loc for legend as shown below, but if it's pan...

2 years ago

2 answers
91 views
0
AttributeError in Python 3.6: 'float' object has no attribute 'items'

We are currently using the Django framework to launch the server.However, since yesterday, the following error has occurred:File/usr/local/lib/python 3.6/site-packages/redis/_compat.py, line 123, inte...

2 years ago

1 answers
38 views
0
from import error

I wrote from import in REPL, but I got an error and I don't know how to solve it.Also, the second photo had the fewest errors, but I didn't know why the error occurred.I'm ashamed that I'm immature, b...

2 years ago

2 answers
127 views
0
I want to set anaconda to default and launch jupyter notebook

This is my first time to ask a question.I apologize for my lack of knowledge.After installing pyenv and anaconda,$pienv rehash$ pyenv global anaconda3-4.3.1However, I would like to set anaconda3-4.3.1...

2 years ago

2 answers
98 views
0
Perform large-scale calculations on the remote Jupiter notebook to continue calculating even if the ssh runs out.

I started Jupiter notebook on the screen command window of the server machine as follows and connected remotely on the local machine to use Jupiter notebook.
However, after performing a calculation th...

« - 173 - »

© 2024 OneMinuteCode. All rights reserved.