Skip to content
Advertisement

How to make a for loop iterate a list and ask for input? PYTHON

I would like to make a program that asks how many bills of each type you got, to do this I wanted to use a for loop and a list.

I did this little test:

JavaScript

This only prints, not all three choices as I want:

JavaScript

And when I give any input it gives me this error:

JavaScript

ValueError: invalid literal for int() with base 10: ”

Advertisement

Answer

You do not need to use index like – (types_of_bills)[i], you can just use i

JavaScript

Output –

JavaScript

You will get ValueError: invalid literal for int() with base 10, because of giving input something other than a integer

Also, instead of .format, you can use f-strings because it is much easier to read –

JavaScript

Check this out – Python 3 f-string

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement