Nim

Template: Click this link, fork, and invite mrcodeswildride: new project

Hints

Add the following to the top of your project, and use the cls() function to clear the console:
import os

def cls():
  os.system("cls" if os.name == "nt" else "clear")
Last section Next section