3 Respuestas
+ 4
If you want to create folder or working with window system then os module is use for it.
here it is tutorial of os module.
https://youtu.be/tJxcKyFMTGo
+ 7
import os
path = "relative/path"
if not os.path.isdir(path):
os.mkdir(path)
+ 2
thank you Maninder Singh ,Mert Yazıcı , it helps me a lot :)