python 小知识积累
2019-02-21 本文已影响0人
lessjianshu
a = b' aaaa'
a.decode('utf-8')
创建目录
···
APP_ROOT = os.path.dirname(os.path.abspath(file))
target = os.path.join(APP_ROOT, 'images')
print(target)
if not os.path.isdir(target):
os.mkdir(target)
···