fork(1) download
  1.  
  2. x = round(32.7)
  3.  
  4. print 'x is now : ', x
  5.  
  6. print str(type(x))
  7.  
  8. print type(x).__name__
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
x is now :  33.0
<type 'float'>
float