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
69 views
0
'module' object is not callable

The tensorboard_log is not a module, but it is said that the module cannot be loaded. Why?

2 years ago

1 answers
44 views
0
How do you create multiple data frames using repeat statements?

I want to make 10 data frames each using the for statement in Pandas.However, when you actually run it, the repetition door turns 10 times and only one data frame, the last result, is created.How do y...

2 years ago

1 answers
52 views
0
Can I save it on several sheets at once when I save it as Excel in Pandas?

When Panda stores data frames in Excel,Can I make several sheets at once?df.to_excel() is made of just one sheetThe first data frame is located on the first sheet called aHow can I make sure that the ...

2 years ago

1 answers
92 views
0
Questions about Python List

To solve this problem #4 for i in range(len(table[0])) : print(table[0][i]) sum=0 for j in range(1,len(table)) : for k in range(1,len(table[j])) : sum=sum+table[j][k] print(total score,sum,means,sum/(...

2 years ago

1 answers
76 views
0
I would like to know how to change the name of the file from '001.txt' to 'Hong Gil-dong-001.txt' or 'Im Kkeok-jeong-001.txt' freely.

I would like to know how to change the name of the file from '001.txt' to 'Hong Gil-dong-001.txt' or 'Im Kkeok-jeong-001.txt' freely. When there is a file named 001.txt When the character 'Hong Gil-do...

2 years ago

1 answers
96 views
0
I'm making a rock-paper-scissors program with tkinter, but there are no errors and no results I want.

The code is as follows:from tkinter import *import randomwindow = Tk()button_list=['Rock', 'Paper', 'Scissors']RockImage=PhotoImage(file=rock.png)PaperImage=PhotoImage(file=paper.png)ScissorImage=Phot...

2 years ago

1 answers
43 views
0
Python is a question that randomly expresses a set value.

for(i=0; i < data.length; i++){ data = data.replace(plenty,100).replace(some,50).replace(few,20).replace(break,5).replace(null,2).replace(empty,1).replace(undefined,3).replace(NaN,7).replace(undef...

2 years ago

1 answers
16 views
0
Problem questions that you use, such as Python functions, dictionaries, and repetitions.

Hong Gil-dong = list()Hong Gil = list()Hong Gil-geum = list()book = {1:Dore Miserables, 2:Great Sotsby, 3:Adult Prince, 4:Child and Mountain, 5:Insect Farm, 6:The Warring States Period, 7:The Apology...

2 years ago

1 answers
45 views
0
Python leftmost column index?

In .iloc[,0], 0 is thought to be the leftmost column, but the second column is retrieved from the leftmost column.How do I retrieve the leftmost column?I think the last refresh is in column 0 in the p...

2 years ago

1 answers
64 views
0
ValueError: too many values to unpack (expected 2) error

from Module import *import turtleinStr = ''swidth, sheight = 500, 500tX, tY, txtSize = [0] * 3turtle.title ('writing')turtle.shape('turtle')turtle.setup(width = swidth + 50, height = sheight + 50)turt...

2 years ago
« - 370 - »

© 2024 OneMinuteCode. All rights reserved.