Computer Science, asked by sanjeevsony28211, 11 months ago

How does mkdir -p work in Python?

Answers

Answered by herin83
0

Python's standard os.mkdir works much like the underlying mkdir system call (i.e., in a pretty spare and rigorous way). For example, it raises an exception when the directory you're trying to make already exists.

Similar questions