2
I want to print the multiplication of the terms and I would like to know if there is a function capable of doing this for me in the Python language:
lista = []
con = 0
while(con<5):
n = int(input('insira um número inteiro'))
con = con + 1
lista.append(n)
print('lista criada=',lis
ta)
print('soma das listas=',sum(lista))