# Using the append method to add items
# to the end of a list
# This whole program is equivalent to:
#     print([0]*5)

count = 0     # int; sentry variable for while
zeroList = [] # list that should be filled with zeros
while count < 5:
    zeroList.append(0)  # add one more element to end of list
    count = count+1
print(zeroList)
