os.mkdirs()
is not a method in os module.
if you are making only one direcory then use os.mkdir()
and if there are multiple directories try using os.makedirs()
Check Documentation
os.mkdirs()
is not a method in os module.
if you are making only one direcory then use os.mkdir()
and if there are multiple directories try using os.makedirs()
Check Documentation