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


3 answers
29 views
0
What kind of name should be given to classes that are object-oriented and generate data models?

I'm an object-oriented beginner.I'm having trouble naming the classes that generate the data model?What do you call object-oriented classes that generate, edit, and delete models such as the following...

2 years ago

2 answers
45 views
0
Why does this cord work well?

I understand that self.n is defined as an instance variable in the code below, but please tell me why this code works well when other.n is not defined.I'm a beginner, but I look forward to working wit...

2 years ago

1 answers
28 views
0
Writing to a text file python

I'm a beginner.Write to a text file.Not reflected.If you don't have a file, it says in the textbook that the file is created in the current directory, but I don't even know where the current directory...

2 years ago

1 answers
93 views
0
Vim plug-in jedi-vim completion does not work properly

Prerequisites/What you want to achieveI want jedi-vim's Omni completion to work properlyProblems/Error Messages you are experiencingIntroduced jedi-vim using Vundlestr. or numpy. and the following mes...

2 years ago

2 answers
99 views
0
pygame surface.fill() does not work well

I wrote the following program about pygameimport sysimport pygamefrom pygame.locals import QUIT# globalsWINDOW_SIZE= (400,300)WINDOW_TITLE=Pygame Countdefmain(): pygame.init() surface=pygame.display.s...

2 years ago

2 answers
100 views
0
How to get the current value of Selenium, Python 3, Combo Box

from selenium.webdriver import Chrome, ChromeOptionsfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.support.ui import Select, WebDriverWaitfrom selenium.webdriver.support import...


1 answers
73 views
0
I want to resolve the error statement. object of type 'numpy.float128' has no len()

I'm a python beginner.I'm trying to show the result of nv calculated by numpy on a bar graph.import numpy as npnv_fw = np.longdouble(0)nv_df = np.longdouble(0)for trial inv: for i in range(0,len(trial...

2 years ago

2 answers
28 views
0
I don't want to affect only some random number seeds.

For example, when func1 is called in the second line of test.py in the following two files, seed is fixed to 42, and b is also generated from seed42.I want to cause it without fixing the seed just now...

2 years ago

1 answers
67 views
0
Understanding Graph Display on the tensorboard

Hello, I am a self-taught tensorflow teacher at Python.The content is deep learning for image recognition.In the process, I would like to use tensorboard. When visualizing the learning process in tens...

2 years ago

1 answers
110 views
0
Flask local server can handle it and wsgi can't handle it

I am currently creating an application with Flask, and I am throwing the POSTed information into the JSON file, but when I start the local server and do the above, it can be processed normally.Interna...

2 years ago
« - 61 - »

© 2024 OneMinuteCode. All rights reserved.