“Dodaj stałą do listy Python” Kod odpowiedzi

Dodaj stałą do listy Python

>>> L = [1]*5
>>> [x+1 for x in L]
[2, 2, 2, 2, 2]
>>>
Naughty Nightingale

Dodaj stałą do listy Python


import numpy
a = [1, 1, 1 ,1, 1]
ar = numpy.array(a)
print ar + 2

Attractive Alligator

Odpowiedzi podobne do “Dodaj stałą do listy Python”

Pytania podobne do “Dodaj stałą do listy Python”

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

Przeglądaj inne języki kodu