Casting - 字符串

  1. x = str("S2")
  2. y = str(3)
  3. z = str(4.0)
  4. print(x)
  5. print(y)
  6. print(z)