Fejezet 6

This commit is contained in:
2021-12-10 08:46:38 +01:00
parent 2d855649f6
commit f74306bc91
15 changed files with 161 additions and 0 deletions

7
fejezet 6/f2/f2.py Normal file
View File

@@ -0,0 +1,7 @@
szam = int(input())
napok = ["Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"]
def napszam(szam):
return napok[szam]
print(napszam(szam))