# list with 5 zeros in it
lst1 = [0] * 5

# list with 5 zeros and 5 ones in it
lst2 = ([0] * 5) + ([1] * 5)

# print the two lists
print(f"List with 5 Zeros: {lst1}")
print(f"List with 5 Zeros & 5 Ones: {lst2}")