您的位置:首页 > 编程语言 > Python开发

信用卡交易系统 Python

2015-12-06 16:49 543 查看
#!/usr/bin/env python
#--*-- coding:utf-8 --*--

#safe_float 的函数主体
def safe_float(obj):
'safe version of float()'
try:
retval = float(obj)
except (ValueError,TypeError),diag:
retval = str(diag)
return retval

def main():
'handles all the data processing'
log = open('cardlog.txt','w') #记录log
try:
ccfile = open('carddata.txt','r')
except IOError,e:
log.write('no txns this month\n')
log.close()
return

txns = ccfile.readlines()
ccfile.close()
total = 0.00
log.write('account log:\n')

for eachTxn in txns:
result = safe_float(eachTxn)
if isinstance(result,float): #检查是否为float
total += result
log.write('data... processed\n')#写入
else:
log.write('ignore:%s'%result)
print '$%s.2f (new balance)'%(total)
log.close()

if __name__ == '__main__':
main()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: