2
My problem is this: when I go to execute the code of an exercise it gives me an error that I’m not understanding why it happens.
Typeerror: can’t Multiply Sequence by non-int of type 'str'
produtos = input('Lista com produtos:')
quantidade = input('Lista com quantidade:')
preco = input('Preco dos produtos:')
def sub_total(produtos,quantidade, preco):
z = 0
for x in range(len(produtos)):
print (produtos[x], quantidade[x]*preco[x],'eur')
z+=quantidade[x]*preco[x]
print ('Total:',z,'eur')
sub_total(produtos, quantidade, preco)
Obs.: Products, quantity and price must be executed in lists.
This is Python 2 or 3?
– Emoon
This is python 3
– Toshiyuki