4 lines
89 B
Python
4 lines
89 B
Python
from pathlib import Path
|
|
|
|
path_save: Path = Path(".save")
|
|
path_save.mkdir(exist_ok=True)
|