Prepare repository for merge
This commit is contained in:
21
python/snippets/initialize-list-with-values.md
Normal file
21
python/snippets/initialize-list-with-values.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Initialize list with values
|
||||
type: snippet
|
||||
tags: [list]
|
||||
cover: dog-waiting
|
||||
dateModified: 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 to `n`, filled with the desired values.
|
||||
- Omit `val` to use the default value of `0`.
|
||||
|
||||
```py
|
||||
def initialize_list_with_values(n, val = 0):
|
||||
return [val for x in range(n)]
|
||||
```
|
||||
|
||||
```py
|
||||
initialize_list_with_values(5, 2) # [2, 2, 2, 2, 2]
|
||||
```
|
||||
Reference in New Issue
Block a user