返回列表 發帖
回復 1# 鄭繼威
  1. a="hello"
  2. b="apple"
  3. c=0
  4. d=3.14
  5. print("apple")
  6. print("123456"+str(a)+b)
  7. print(a,c,end="1111\n")
  8. print(a,b,sep="#*#*")
  9. print(d,a,sep="+-+-",end=b)
  10. print()
  11. print(a,b,c,d,sep="$")      
複製代碼

TOP

返回列表