- 博客(8)
- 问答 (1)
- 收藏
- 关注
原创 python 实例8 日常记账本小程序
实现收支的自动计算能够查询每笔账款的消费详情1、函数需要两个文件:一个类似钱包功能,存放钱;另一个用于记录每笔花销的用途#!/usr/bin/env pythonimport cPickle as pwith open('wallet.data','w') as f: p.dump(10000,f)with open('record.txt','w') as f:
2016-01-11 17:57:12 10035
原创 python 实例7 为rhel添加系统用户与登录密码,并给root 发送邮件
#!/usr/bin/env python#coding:utf8import osimport passwdimport stringimport syscontent = 'username : ${user} \ userpassword :${password}'s=string.Template(content)def adduser(user
2016-01-07 14:51:13 728
原创 pyhton 实例6 格式化输出
#!/usr/bin/env python#coding:utf8''''format output'''begend = "+"+'*'*48+'+'mylist = []while True: data = raw_input('input data(. > quit): ') if data == '.': break else:
2016-01-06 17:01:45 480
原创 python 小实例5 创建文件,并写入数据:要求不能与现存系统文件重名
#!/usr/bin/env python#coding:utf8'''writing something to new file'''import osprompt='input filename :'ls=os.linesepmylist=[]def write(): while True: filename=raw_input(prompt)
2016-01-06 15:58:41 1095
原创 python 小实例4 密码随机生成器
使用string模块、random模块本函数定义了密码长度为8.用户可以自己设置密码的长度,修改num 数值即可#!/usr/bin/env python#coding:utf8'''reduce password randomly'''import randomimport stringallcho = string.letters+string.digitsde
2016-01-06 11:14:02 678
原创 python 小实例3 with 简化文件的读取的代码
rhel 将/bin/ls 拷贝一份并使新文件具有一样的查看功能。第一步:文件的复制#!/usr/bin/env python#coding:utf8srcfile = '/bin/ls'desfile = '/home/ls'with open(srcfile) as oldfile: with open(desfile,'w')as newfile:
2016-01-06 10:50:06 504
原创 python 编程小实例(2) 四则运算小游戏
从1 到100之间随机选取俩个整数,使用大的数字加上或者除以小的数值。用户可以输入三次正确答案。三次不对则给出正确答案。第一步:定义函数框架def main(): while True: arithmetic() try: goon = raw_input('next(y/n)').strip()[0]
2016-01-04 21:51:12 2290
空空如也
求助!!python web AttributeError 怎么改?
2014-12-05
TA创建的收藏夹 TA关注的收藏夹
TA关注的人