1. 程式人生 > >字符串與數據之間的轉換

字符串與數據之間的轉換

pri NPU ane type print input eat put integer


death_age =80


name = input("your nane:")
age = input("your age:") #input 接受的所有數據都是字符串,但是會被當成字符串來處理
print (type(age)) #打印數據類型

#int integer =整數 把字符串轉出數據用int(被轉數據)
#str string =字符串 把數據轉成字符串用str(被轉數據)


print("your name:",name )
print("you can still live for ",str (death_age - int(age) ),"years ...." )
print("you can still live for " + str (death_age - int(age) ) + "years ...." )

字符串與數據之間的轉換