Skip to content

Instantly share code, notes, and snippets.

@timo-boehm
Created June 13, 2020 08:47
Show Gist options
  • Save timo-boehm/1be40ab9d32121710a680fa085686779 to your computer and use it in GitHub Desktop.
Save timo-boehm/1be40ab9d32121710a680fa085686779 to your computer and use it in GitHub Desktop.
def scores(name, score, records = dict()):
records[name] = "passed" if score > 60 else "failed"
return records
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment