標題:
基本輸入
[打印本頁]
作者:
鄭繼威
時間:
2023-7-7 19:32
標題:
基本輸入
語法
變數= input([提示字串])
由input所接收的值型別是字串!
score=int(input("請輸入你的成績: "))
print(score)
複製代碼
作者:
董炫霆
時間:
2023-7-10 13:45
a=input("請輸入數學成績:")
b=input("請輸入國語成績:")
c=int(a)/2+int(b)/2
print("你的成績平均是"+str(c)+"分")
複製代碼
作者:
張育維
時間:
2023-7-10 13:45
h=input("Please enter a number:")
print("You entered"+h)
print("The number plus 10 is "+str(int(h)+10))
複製代碼
作者:
歐陽霖
時間:
2023-7-10 13:48
n=int(input("請輸入字串:"))
print("你剛剛輸入的是"+str(n))
print("n+10=",str(n+10))
複製代碼
作者:
曾冠瑋
時間:
2023-7-10 13:49
score=int(input("請輸入你的成績: "))
print(score)
作者:
鄭繼威
時間:
2023-7-10 13:49
4
作者:
黃柏翰
時間:
2023-7-10 13:51
a="apple"
b=input("請輸入字串")
print("你剛剛輸入的是"+b)
作者:
方昱安
時間:
2023-7-10 13:51
a=int(input("輸入數字"))
print(a+5)
複製代碼
作者:
董恩瑞
時間:
2023-7-10 13:51
a="apple"
b=input("請輸入字串")
print("你剛剛輸入的是"+b)
作者:
劉恆
時間:
2023-7-10 13:51
a="apple"
b=input("請輸入自稱")
print("你剛剛輸入的是"+b)
作者:
盧承新
時間:
2023-8-2 14:01
a=input("請輸入你的成績:")
print(f"你的成績:{a}")
複製代碼
作者:
得銓
時間:
2023-8-2 14:02
score=int(input("請輸入你的成績:"))
print(score)
複製代碼
作者:
高士涵
時間:
2023-8-2 14:04
score=input("請輸入成績")
print(f"你的成績是{score}")
複製代碼
作者:
矯博宇
時間:
2023-8-2 14:04
score=float(input("請輸入你的成績:"))
print("你的成績為:",score)
複製代碼
作者:
盧芷萱
時間:
2023-8-2 14:05
score=input("請輸入你的成績:")
print(f"你的成績={score}")
複製代碼
作者:
張子搴
時間:
2023-8-2 14:05
a=input("請輸入你的成績:")
print=(f"成績為:{a}")
複製代碼
作者:
鄧維成
時間:
2023-8-2 14:05
name="w"
score=int(input(f"請輸入{name}的成績:"))
print(f"{name}的成績是{score}")
複製代碼
作者:
呂宗晉
時間:
2023-8-2 14:07
score=int(input("請輸入你的成績:"))
print(score)
複製代碼
作者:
鄭繼威
時間:
2023-8-2 14:10
8
作者:
李逢翔
時間:
2023-8-2 14:12
name="ODD"
n=10
score=int(input(f"請輸入{name}目前的成績:"))
print(f"{name}的成績:{score+n}")
複製代碼
作者:
陳珺
時間:
2023-8-2 14:13
a=input("請輸入成績")
print(f"你的成績是{a}")
作者:
鄧維成
時間:
2023-8-2 14:34
a=int(input("a: "))
b=int(input("b: "))
print(f"a+b={a+b}")
print(f"a-b={a-b}")
print(f"a*b={a*b}")
print(f"a/b={a/b}")
print(f"a%b={a%b}")
print(f"a//b={a//b}")
print(f"a**b={a**b}")
複製代碼
作者:
張絜晰
時間:
2023-8-2 14:44
name="Joe"
score=int(input(f"What is {name}'s score?"))
print(f"{name}'s score is {score}")
複製代碼
作者:
張絜晰
時間:
2023-8-2 15:09
score=int(input("ur score: "))
print(score)
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2