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


2 answers
18 views
0
It's a question about changing the Python printout

for i in range(0,3) : for j in range(0,3) : print(a[i][j]+b[i][j], end=)You are creating an expression that represents matrix addition using a double list.If you do it like I did, it looks like 24681...

2 years ago

1 answers
11 views
0
Python Barnsley drawing bracken

It's Barnsley drawing bracken... There's an error. Please tell me why

2 years ago

1 answers
18 views
0
Zoom in on Python's picture

from tkinter import *from tkinter.filedialog import *from tkinter.simpledialog import*def func_open() :filename = askopenfilename (parent = window, files = (GIF files, *.gif), (all files, *.*))photo =...

2 years ago

2 answers
59 views
0
I want to make a panel that shows information used by space centers like NASA.

I'm sorry it's such a comprehensive question. I'd like to make a program like NASA or space center to launch information on satellites or rockets, and I'm good at using c, python. Could you recommend ...

2 years ago

1 answers
68 views
0
Python] When converting from Korean column name -> multiindex to English index name, DataFrame cannot find English index name... (DataFrame' object has no attribute 'English index name')

By material code To see how much of the material has been used over a given period of time, ex)January 1st to January 31stPivot raw data and pivot_Data = pd.pivot_table (rawData, index = ['material co...

2 years ago

1 answers
86 views
0
Enter a string in the Python list

When the number of inputs of the string and the maximum number of files to be input in the first code is 20,000num = int(input())stra = [0]*20000Define it like this. for i in range(0,num,1) : stra[i] ...

2 years ago

1 answers
151 views
0
I have a question about Python json and urlib parsing. (Use League of Legends api)

import urllib.requestimport jsondef get_encryptedID(input_name): apikey = The value of the api key. encode_name = input_name.replace( , %20) urls = 'https://kr.api.riotgames.com/lol/summoner/v4/summon...

2 years ago

1 answers
44 views
0
Recall djangoManytoManyField value from View

ProfileCategoryForm is used to receive and save ProfileCategory model values from html in POST format. Here, I would like to load each extras_profile_text and extras_category_text of the Profile and C...

2 years ago

1 answers
17 views
0
How do I know the type of object?

I want to know which variable is which type, what should I do in this case?

2 years ago

1 answers
40 views
0
When do you use the list and tuple?

When do you use the list and tuple in Python?Some methods return lists and some methods return tuples, and I wonder by what criteria you made them.Hello %s you are %s years old %x #Tuple only availabl...

2 years ago
« - 315 - »

© 2024 OneMinuteCode. All rights reserved.