python-CSD-kursu/python-temel/match.example.py

16 lines
255 B
Python
Raw Normal View History

2023-05-21 11:17:57 +03:00
a = int(input('bir değer giriniz:'))
match a:
case 1:
print('bir')
case 2:
print('iki')
case 3:
print('üç')
case 4:
print('dört')
case 5:
print('beş')
case _:
print('hiçbiri')