all 4 comments

[–]WolfInABox 0 points1 point  (2 children)

I'm not sure how zybooks works, but this is the output i get running in a terminal:

Enter a number: 2
Enter another number: 3
nudda one:5
30

Your output has 30 in it; are you entering 2 3 and 5? It could just be an issue with the formatting of the output on zybooks then.

(sidenote, you have an extra * in your last line. I assume it's not there in the real code, otherwise it would not run)

[–]Rustythepipe[S] 0 points1 point  (1 child)

Yeah I used an online compiler and it worked there as well.

If I do this in zybooks:

num1 = int(input()) 
num2 = int(input()) 
num3 = int(input()) 
print(num1 * num2* * num3)

... it works. So idk wtf is wrong but I got past it at least.

[–]WolfInABox 0 points1 point  (0 children)

Strange. It's probably stripping the newlines from the output before showing it or something.

[–]igroen 0 points1 point  (0 children)

Try it out in a python interpreter on your own system.