os.path.join里写3个变量

2023-01-31 03:01:11 path os 变量

os.path.join里写3个变量

注:

必须为变量,不是变量需先定义为变量

dst="/home/ming"

Images = "Images"

d = open('/log/aa.txt','r')
for e in d.readlines():
d.close()
if not os.path.exists(os.path.join(dst,e.strip(),Images)):
os.makedirs(os.path.join(dst,e.strip(),Images))

相关文章