[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]


There are two issues:

  1. There is no = in between the variable continue and input() on line 21.

  2. 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]