I want to print the multiplication of terms and I would like to know if there is any function that can do 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))