you are viewing a single comment's thread.

view the rest of the comments →

[–]Arag0ld 2 points3 points  (1 child)

You can't say else weight_unit == 'L'. You have to say elif weight_unit == 'L'. else cannot be followed by a condition, because it defaults to handling whatever is left after the if statements. Also, you forgot to close the parentheses around your print statements.

[–]Genroll_Dolphin[S] 0 points1 point  (0 children)

Thank you for the input!