f = open("ip.txt", "r", encoding="utf-8") ret = f.readline() while ret: print(ret, end='') ret = f.readline() f.close().
確定! 回上一頁