RosettaCodeData/Task/Make-directory-path/Python/make-directory-path-3.py

3 lines
55 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def mkdirp(path):
os.makedirs(path, exist_ok=True)