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

  4. This is a temporary script file.
  5. """

  6. print("hello world")

  7. a=120
  8. b=69

  9. print(a,"apple",b,)

  10. print (a,"kenny",b,sep="-",end="$")
複製代碼

TOP

  1. # -*- coding: utf-8 -*-
  2. """
  3. Spyder Editor

  4. This is a temporary script file.
  5. """

  6. print("hello world")
  7. print(120,"apple",69)
  8. a=120
  9. b=69
  10. print(a,"apple",b,)
  11. print(a,"apple",b,sep="=")
  12. print (a,"kenny",b,sep="-",end="$")
複製代碼

TOP

返回列表