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

8 lines
199 B
Python
Raw Normal View History

2023-05-21 13:15:19 +03:00
while True:
cmd = input('CSD>').split()
match cmd:
case 'delete', path, *others:
print(f'delete{path} {others}')
case _:
print('geçersiz komut!')