返回列表 發帖
  1. a=123
  2. b="C"
  3. print("AB{}D".format(b))
  4. print("{}456".format(a))
  5. print("AB{}D{}456".format(b,a))
複製代碼

TOP

返回列表