python IDLE中如何执行for、while、if等多行语句?

>>> f=open("E:/pythonLearn/140.txt")
>>> for line in f.readlines():
    print(line)  #在此连续点两次回车即可