t517.py 102 B

1234567891011
  1. q = 5.0
  2. w = -q
  3. x = True
  4. y = -x
  5. print q, type(q)
  6. print w, type(w)
  7. print x, type(x)
  8. print y, type(y)