Skip to content
Snippets Groups Projects
Commit aec0afab authored by Børge Haugset's avatar Børge Haugset
Browse files

alt

parent f8a36a0e
No related branches found
No related tags found
No related merge requests found
def goal_results(hjemme, borte):
if hjemme > borte:
return 'hjemmeseier'
elif hjemme == borte:
return "uavgjort"
else:
return "borteseier"
print(goal_results(2,3))
print(goal_results(4,3))
print(goal_results(2,2))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment