python:how to exit if block during interactive mode

433 views Asked by At

just play with Python, a small question on interactive mode.

steps:

  1. enter python interactive mode, following line shows detail on interactive mode List item
  2. >>>flag=True
  3. >>>if flag:
  4. . . .     print("flag is True")
  5. after above step, i WANT to exit the whole if block. but if press enter for above line 4, it will start line with "...", which means still in if block.

question: HOW CAN I exit if block and write sth like the following in interactive mode :

flag=True
if flag:
    print("flag is True")
print("exit if now ")
1

There are 1 answers

0
Ramy Ibrahim On BEST ANSWER

double Enter will exit the if block in the interactive mode