码迷,mamicode.com
首页 > 编程语言 > 详细

python中一个函数实现读写文件、判断价格正确常用函数

时间:2019-04-20 13:08:03      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:imp   json   常用   读写   lse   with open   个数   res   def   

# 写一个函数,有2个功能,能读文件,也能写文件

# 读文件,只需要传文件名

# 写文件,需要传文件名,写入的内容

import json


def op_file(file, content=None):
if content:
with open(file, ‘w‘, encoding=‘utf-8‘) as fw:
json.dump(content, fw)
else:
with open(file, encoding=‘utf-8‘) as fw:
result = json.load(fw)
return result

# 2、判断一个数为float或者正数 价格
def check_float(num):
num = str(num)
if num.isdigit() and int(right) > 0:
return True
elif num.count(‘.‘) == 1:
left, right = num.split(‘.‘)
if left.isdigit() and right.isdigit() and int(right) > 0:
return True
return False

python中一个函数实现读写文件、判断价格正确常用函数

标签:imp   json   常用   读写   lse   with open   个数   res   def   

原文地址:https://www.cnblogs.com/skyxiuli/p/10740391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!