返回列表 發帖

基本輸入

本帖最後由 鄭繼威 於 2024-1-24 14:12 編輯

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


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

d=input("請輸入成績:")
print(int(d)+10)

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

  1. a=input("type a number")
  2. b=int(a)*2
  3. print(b)
複製代碼

TOP

Hi

  1. print("請輸入你的名字")
  2. name=input();
  3. print(f"{name}, 你好")
複製代碼

TOP

返回列表