返回列表 發帖
  1. a=b="20"
  2. print("a={}".format(a))
  3. print("b={}".format(b))
  4. c=a+b

  5. print("字串相加={}".format(a+b))
  6. d=int(a)+int(b)


  7. print("數字相加={}".format(d))
複製代碼

TOP

返回列表