fork download
  1. x = 5
  2. y = 10
  3. # Now x = 5 and y = 10
  4.  
  5. print(' x : {}'.format(x)) # x : 5
  6. print(' y : {}'.format(y)) # y : 10
Success #stdin #stdout 0.02s 9124KB
stdin
Standard input is empty
stdout
 x : 5
 y : 10