返回列表 發帖
  1. a=1
  2. b=2
  3. c=a+b
  4. print(c)
  5. c=str(a)+str(b)
  6. print(c)
  7. d=int(c)+a+b
  8. print(d)
複製代碼

TOP

返回列表