University-Docs/Documents/School/SEM 2/MI/OZ6/oef2.py

10 lines
123 B
Python

num = int(input("Geef een getal: "))
num_dict = {
1:"een",
2:"twee",
3:"drie"
#...
}
print(num_dict[num])