美文网首页
python 小知识积累

python 小知识积累

作者: lessjianshu | 来源:发表于2019-02-21 20:46 被阅读0次
    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)

    ···

    相关文章

      网友评论

          本文标题:python 小知识积累

          本文链接:https://www.haomeiwen.com/subject/mmzdyqtx.html