List contains of 0 - based on other list

Hello,
How can I do a new list based on other list f.e. like below, but new list must contain only 0 values.
New list should be:
0
0
0
0
0
Number of “zeroes” must be the same that keys on based list.
F.e. If I have list contain of 10 elements → new list must have 10 zeroes


Regards

@AeM_86 ,

you can use Cycle

or a condtion

1 Like

Thanks @Draxl_Andreas