輕鬆學會使用者輸入
任意門:https://www.youtube.com/watch?v=8JouYo55trA&list=PLpZ8gOBZmTy5QMSpXdhipOrccWSQd3WxI&index=5
#input 取得使用者輸入
phone_number = input("請輸入手機末三碼:")
print(f"你的手機末三碼是{phone_number}")
#練習一:填詞遊戲
adj_1 = input("請輸入第1個形容詞:")
noun = input("請輸入名詞:")
adj_2 = input("請輸入第2個形容詞:")
verb = input("請輸入動詞:")
adj_3 = input("請輸入第3個形容詞:")
print(f"今天我去了一個{adj_1}的百貨公司,在專櫃中我看到了{noun},這個{noun}很{adj_2},正在{verb},我感到很{adj_3}")
請輸入第1個形容詞:很有名的
請輸入名詞:香奈兒包包
請輸入第2個形容詞:貴
請輸入動詞:特價中
請輸入第3個形容詞:很有性價比
今天我去了一個很有名的的百貨公司,在專櫃中我看到了香奈兒包包,這個香奈兒包包很貴,正在特價中,我感到很很有性價比
#練習二:計算矩形面積
length = float(input("請輸入矩形的長度"))
width = float(input("請輸入矩形的寬度"))
area = length * width
print(f"面積為{area}平方公分")
#練習三:購物車程式
item = input("你想購買什麼物品:")
price = float(input("價格多少?"))
quantity = int(input("你需要多少件?"))
total = price * quantity
print(f"你購買了{quantity}{item},總價為$ {total}")