python-CSD-kursu/while.case.2.py
2023-05-21 13:15:19 +03:00

8 lines
199 B
Python

while True:
cmd = input('CSD>').split()
match cmd:
case 'delete', path, *others:
print(f'delete{path} {others}')
case _:
print('geçersiz komut!')