Skip to content
Snippets Groups Projects
Commit 4008a607 authored by Annukka Heinonen's avatar Annukka Heinonen
Browse files

Etusivun hahmotelma

parent 69c61042
No related branches found
No related tags found
No related merge requests found
def varaus():
print("Tähän tulee varausjärjestelmä! :)")
def admin():
print("Tähän tulee ylläpito! :)")
print("1 Varaaminen")
print("2 ylläpito")
print("0 sulkee järjestelmän")
while True:
arvo = int(input("Anna toiminto: "))
if arvo == 1:
varaus()
elif arvo == 2:
admin()
elif arvo == 0:
print("Kiitos ja hei!")
break
\ 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