I\'m coding a small program to time and show, in a ordered fashion, my Rubik\'s cube solvings. But Python (3) keeps bothering me about times being used prior to global decla
From the Python Docs
Names listed in a global statement must not be used in the same code block textually preceding that global statement.