首页 > 导入文件调试过程暂时记一下,我再想想
头像
金贺
发布于 2021-02-26 23:53
+ 关注

导入文件调试过程暂时记一下,我再想想


导入文件调试过程暂时记一下,我再想想,整明白后再修改

def read_txt():
    with open("../data/calc.txt", "r", encoding="utf-8") as f:
        return f.readlines()


if __name__ == '__main__':
    print(read_txt())
    arrs = []
    for data in read_txt():
        arrs.append(tuple(data.strip().split(",")))
    # return arrs
    print(arrs)


全部评论

(0) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

近期精华帖

热门推荐