返回列表 發帖
  1. a=b=20
  2. print(f"a={a}")
  3. print(f"b={b}")
  4. c=a+b
  5. d=int(a)+int(b)
  6. print(f"字串相加={d}")
複製代碼

TOP

返回列表