返回列表 發帖

基本輸入

語法
變數= input([提示字串])
由input所接收的值型別是字串!


  1. score=int(input("請輸入你的成績: "))
  2. print(score)
複製代碼

  1. a=input("請輸入數學成績:")
  2. b=input("請輸入國語成績:")
  3. c=int(a)/2+int(b)/2
  4. print("你的成績平均是"+str(c)+"分")
複製代碼

TOP

  1. h=input("Please enter a number:")
  2. print("You entered"+h)
  3. print("The number plus 10 is "+str(int(h)+10))
複製代碼

TOP

  1. n=int(input("請輸入字串:"))
  2. print("你剛剛輸入的是"+str(n))
  3. print("n+10=",str(n+10))
複製代碼

TOP

score=int(input("請輸入你的成績: "))
print(score)

TOP

4

TOP

a="apple"
b=input("請輸入字串")
print("你剛剛輸入的是"+b)

TOP

  1. a=int(input("輸入數字"))
  2. print(a+5)
複製代碼

TOP

a="apple"
b=input("請輸入字串")
print("你剛剛輸入的是"+b)

TOP

a="apple"
b=input("請輸入自稱")
print("你剛剛輸入的是"+b)

TOP

  1. a=input("請輸入你的成績:")
  2. print(f"你的成績:{a}")
複製代碼

TOP

  1. score=int(input("請輸入你的成績:"))
  2. print(score)
複製代碼

TOP

  1. score=input("請輸入成績")
  2. print(f"你的成績是{score}")
複製代碼

TOP

  1. score=float(input("請輸入你的成績:"))
  2. print("你的成績為:",score)
複製代碼

TOP

  1. score=input("請輸入你的成績:")
  2. print(f"你的成績={score}")
複製代碼

TOP

  1. a=input("請輸入你的成績:")
  2. print=(f"成績為:{a}")
複製代碼

TOP

  1. name="w"
  2. score=int(input(f"請輸入{name}的成績:"))
  3. print(f"{name}的成績是{score}")
複製代碼

TOP

  1. score=int(input("請輸入你的成績:"))
  2. print(score)
複製代碼

TOP

8

TOP

  1. name="ODD"
  2. n=10
  3. score=int(input(f"請輸入{name}目前的成績:"))
  4. print(f"{name}的成績:{score+n}")
複製代碼

TOP

返回列表