我有一个文件“f.txt”,其中有很多str类型的数字。每个数字最多有 9 位数字,最少有 3 位数字。每个数字都由一个新的行字符分隔(所以每个数字都在自己的行中,我不知道如何正确格式化,所以下面的例子在格式方面并不准确)。
我想编写一个循环访问该文件的函数,并检查该文件中是否有任何重复的数字。文件的内部如下所示:
1244816 \n 2760125 \n 1102758 \n 713765 \n 6521147 \n 4711995 \n 1494276 \n 12336119 \n 8398120 \n 1215092 \n 8125139 \n ...
with open("ket.txt") as f:
line = f.readline()
status = True
while status:
if line == #looping through the entire file to see if there is
#identical number:
status = False
我有一些伪代码?我不确定如何实现评论部分。
一只斗牛犬
相关分类