There are two issues:
-
There is no
=
in between the variablecontinue
andinput()
on line 21. -
You cannot use
continue
as a variable name, as it is a keyword, so basically you need to replace all those instances with another variable name.
solved I am learning python and following along with a tutorial and i made this dice function but the continue = input() is being caught [closed]