“Dokonaj tablicy z danym rozmiarem Python” Kod odpowiedzi

Python deklaruje szereg wielkości n

>>> n = 5                     #length of list
>>> list = [None] * n         #populate list, length n with n entries "None"
>>> print(list)
[None, None, None, None, None]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, None, None, 1]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, None, 1, 1]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, 1, 1, 1]

Dokonaj tablicy z danym rozmiarem Python

#n is the desired length
a = [None] * n
MitchAloha

Odpowiedzi podobne do “Dokonaj tablicy z danym rozmiarem Python”

Pytania podobne do “Dokonaj tablicy z danym rozmiarem Python”

Więcej pokrewnych odpowiedzi na “Dokonaj tablicy z danym rozmiarem Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu