返回列表 發帖
  1. # -*- coding: utf-8 -*-
  2. """
  3. Spyder Editor

  4. This is a temporary script file.
  5. """
  6. a=123
  7. b=456
  8. print(a,"python",b)
  9. print(a,"python",b,sep="~")
  10. print(a,"python",b,sep="~",end="!!!\n")
  11. print(str(a)+"~python~"+str(b)+"!!!")
複製代碼

TOP

返回列表