Initialize list with same bool value

Question:

Is it possible without loops initialize all list values to some bool? For example I want to have a list of N elements all False.

Asked By: Alecs

||

Answers:

You can do it like this: –

>>> [False] * 10
[False, False, False, False, False, False, False, False, False, False]

NOTE: –
Note that, you should never do this with a list of mutable types with same value, else you will see surprising behaviour like the one in below example: –

>>> my_list = [[10]] * 3
>>> my_list
[[10], [10], [10]]
>>> my_list[0][0] = 5
>>> my_list
[[5], [5], [5]]

As you can see, changes you made in one inner list, is reflected in all of them.

Answered By: Rohit Jain
    my_list = [False for i in range(n)]

This will allow you to change individual elements since it builds each element independently.

Although, this technically is a loop.

Answered By: Noah

When space matters, bytearray is a better choice. It’s roughly five times more space efficient than the list of boolean solution.

This creates an array of N values, initialized to zero:

B = bytearray(N)
Answered By: Waylon Flinn