1# Basic syntax:
2your_list.extend([element]*number)
3# Where:
4# - element is the element you want to add to your_list
5# - number is the number of times you want it repeated
6
7# Note, .extend modifies your_list in place
8
9# Example usage:
10your_list = [1, 2, 3]
11your_list.extend([0]*5)
12print(your_list)
13--> [1, 2, 3, 0, 0, 0, 0, 0]