继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

python目录判断与创建

缥缈止盈
关注TA
已关注
手记 282
粉丝 34
获赞 152

1、完成目录判断
2、完成文件创建
3、完成cpickle模块化写与读

import cPickle as p,os
dirlis = os.getcwd()
    dirlis_new = dirlis + "\\"+"pytTest"
    print dirlis_new
    if not os.path.exists(dirlis_new):
        os.mkdir(dirlis_new)
        print "目录创建成功!!!"
    else:
        print "目录已经存在!!!"
    os.chdir(dirlis_new)
    print "进入目录,开始新建文件"
    file_name = "python.py"
    with open(file_name,"w") as fo:
        fo.write("#coding=utf-8")
    #p.dump(open(file_name),True)
    f1 = file("tem.pkl","a")
    p.dump("\nprint \"wgood\" ",f1,True)
    f1.close()
    fr = file("tem.pkl","r")
    ar = p.load(fr)[1]
    print ar

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP