python-CSD-kursu/python-temel/match.while.2.py

13 lines
404 B
Python
Raw Normal View History

2023-05-21 12:30:38 +03:00
while True:
cmd = input('CSD>').strip()
match cmd:
case 'delete' | 'remove' | 'erase' as x:
print(f'silme işlemi "(x)" komutu ile yapılıyor')
case 'copy':
print('kopyalama işlemi')
case 'rename':
print('isim değiştirme işlemi')
case 'exit' | 'quit':
break
case _:
print('geçersiz komut!')