tips_file = open('code_tips.txt', 'w+')
tips_file.write('-use simple function and variable names\n-comment code\n-organize code into functions\n')
tips_file.seek(0)
tips_text = tips_file.read()
print (tips_text)
上述代码没有输出。 但是对于以下代码,有输出
tips_file.seek(13)
tips_text = tips_file.read()
print(tips_text)
我想知道为什么会有差异
我只是弄清楚如果我将代码分成2个单元格
tips_file = open('code_tips.txt', 'w+')
tips_file.write('-use simple function and variable names\n-
commentcode\n-organize code into functions\n')
和
tips_file.seek(0)
tips_text = tips_file.read()
print(tips_text)
如果我第一次运行第一个单元格而第二个单元格运行两次,那么我可以提供输出。如果仅运行第二个单元格一次,则不会出现与输出相同的问题。我真的很困惑。