Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

while loop with many conditions


while True:
   line = get_next_line()

   if last_line:
       break

   if line is empty:
      continue

   if line_has_a_hash: # at the  beginning:
      continue

   if line_has_two_slashes: // at the beginning:
      continue

   do_the_real_stuff()