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

Posted 董小姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中一个函数实现读写文件判断价格正确常用函数相关的知识,希望对你有一定的参考价值。

# 写一个函数,有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中一个函数实现读写文件判断价格正确常用函数的主要内容,如果未能解决你的问题,请参考以下文章

[Python]-10-文件读写(中)

Python基础入门-文件读写

python实现购物车

7.打开文件文件读写操作with方式文件常用函数

python操作文本文件

用numpy计算成交量加权平均价格(VWAP),并实现读写文件