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

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!')