I have the following if statements:
if can_move == True:
return "ok"
else:
return "error"
if can_run
return "great"
else:
return "error"
The issue I have is if the else statement is run, then the other if statement doesn't execute. I would like both of them to execute simultaneously.