返回列表 發帖

基本輸入

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


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

  1. score=int(input("ur score: "))
  2. print(score)
複製代碼
Attention Seeker </3

TOP

  1. name="Joe"
  2. score=int(input(f"What is {name}'s score?"))
  3. print(f"{name}'s score is {score}")
複製代碼
Attention Seeker </3

TOP

  1. a=int(input("a: "))
  2. b=int(input("b: "))
  3. print(f"a+b={a+b}")
  4. print(f"a-b={a-b}")
  5. print(f"a*b={a*b}")
  6. print(f"a/b={a/b}")
  7. print(f"a%b={a%b}")
  8. print(f"a//b={a//b}")
  9. print(f"a**b={a**b}")
複製代碼

TOP

a=input("請輸入成績")
print(f"你的成績是{a}")

TOP

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

TOP

8

TOP

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

TOP

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

TOP

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

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. score=int(input("請輸入你的成績:"))
  2. print(score)
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

4

TOP

返回列表