6 lines
146 B
Python
6 lines
146 B
Python
import os
|
|
|
|
clearScreen = lambda: os.system('cls' if os.name == 'nt' else 'clear')
|
|
|
|
def get_args(text: str) -> list:
|
|
return text.split(" ") |