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

10 lines
123 B
Python
Raw Normal View History

2022-04-03 18:13:51 +02:00
num = int(input("Geef een getal: "))
num_dict = {
1:"een",
2:"twee",
3:"drie"
#...
}
print(num_dict[num])