1. 程式人生 > >python中的input()用法

python中的input()用法

這是學習python的第9課,主要學習了使用python中的  input()  函式,把資料讀到自己的程式裡去。

print("How old are you?",end=' ')
age = input()
print("How tall are you?",end=' ')
height = input()
print("How much do you weight?",end=' ')
weight = input()

print(f"So, you're {age} old, {height} tall and {weight} heavy.")

執行結果:

總結:

<1>.  input()  函式直接接受且不改變輸入資料的型別,但是需要注意的是使用  input()  在輸入字串時需要新增引號,否則會報錯 。

<2>.  end=' '  標明在  end  後面傳遞一個空字串,這樣print函式不會在字串末尾新增一個換行符,而是新增一個空字串,也就是說,它的意思是 末尾不換行,加空格。

上面程式碼的另一種寫法:

age = input("How old are you? ")
height = input("How tall are you? ")
weight = input("How much do you weigh? ")

print(f"So,you're {age} old,{height} tall and {weight} heavy.")