Suppose your program already has a list called digits, which contains several numbers. Write a for loop that will add together every number in digits. (Do not use the list sum function.) Print your total after the loop. In python please.

# Assuming that digits is already declared.
total = 0 # initialize total to 0
for num in digits: # go through all the numbers of the digits list
total += num # add number of list to total
print(total) # finally, print total
Suppose your program already has a list called digits, which contains several numbers. Write a for...