[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]
[ad_1] There are two issues: There is no = in between the variable continue and input() 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. [ad_2] solved I am learning python and following along with … Read more