fork(2) download
  1. res = input('blahblah: ')
  2.  
  3. while res is not 'c':
  4. print('res is not c')
  5. break
  6.  
  7. if res is 'h':
  8. print('res is h')
Success #stdin #stdout 0.01s 27664KB
stdin
h
stdout
blahblah: res is not c
res is h