# DS051023 (List Practice Problem)

Write a Python program to multiply all the items in a list.

list = [2,3,4,5,6,7,8]
all = 1
for i in list:
all *= i
print(all)