500 B
500 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Initialize list with values | snippet |
|
dog-waiting | 2020-11-02T19:28:05+02:00 |
Initializes and fills a list with the specified value.
- Use a list comprehension and
range()to generate a list of length equal ton, filled with the desired values. - Omit
valto use the default value of0.
def initialize_list_with_values(n, val = 0):
return [val for x in range(n)]
initialize_list_with_values(5, 2) # [2, 2, 2, 2, 2]