最佳答案
我只读取 python 的 firstline
使用:
with open(file_path, 'r') as f:
my_count = f.readline()
print(my_count)
我对变量 my _ count 的作用域有点困惑。虽然打印工作良好,但是最好先在外部使用语句执行类似于 my_count = 0
的操作(例如在 C 中用于执行 int my_count = 0
)