gpt4 book ai didi

python - 从文件中读取python

转载 作者:太空宇宙 更新时间:2023-11-03 15:51:35 24 4
gpt4 key购买 nike

我在 python 代码中定义了一些常量。这些常量如下:

pairs = (
(0.0, 0.25, 0.2, 0.30),
(0.25, 0.5, 0.35, 0.45),
(0.5, 0.75, 0.5, 0.6),
(0.75, 1.0, 0.65, 0.75)
)

我想将这些常量放入文本文件中并从我的代码中读取它们。怎么可能这样做呢?我怎样才能以完全相同的方式读取这些常量?

编辑:我尝试使用以下代码读取变量:

with open ("test.txt", "r") as myfile:
data=myfile.readlines()

但是它不会产生所需的输出。

最佳答案

import csv
with open(path, 'rb') as f:
reader = csv.reader(f)
list_out = list(reader)
print list_out

以列表格式创建输出

[['0.0', ' 0.25', ' 0.2', ' 0.30'], ['0.25', ' 0.5', ' 0.35', ' 0.45'], ['0.5', ' 0.75', ' 0.5', ' 0.6'], ['0.75', ' 1.0', ' 0.65', ' 0.75']]

输入文件创建并保存如下

0.0, 0.25, 0.2, 0.30
0.25, 0.5, 0.35, 0.45
0.5, 0.75, 0.5, 0.6
0.75, 1.0, 0.65, 0.75

关于python - 从文件中读取python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41244392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com