fork download
  1. x = 10
  2. #-assign the variable x the number 10
  3.  
  4. x = 20
  5. #-reassign the variable number x the number 20
  6.  
  7. print("The value of x is", x)
  8.  
Success #stdin #stdout 0.03s 9600KB
stdin
Standard input is empty
stdout
The value of x is 20