码迷,mamicode.com
首页 > 其他好文 > 详细

字符串与数据之间的转换

时间:2019-01-26 18:02:25      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:nbsp   inpu   ring   nan   str   string   put   转换   input   


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 ...." )

字符串与数据之间的转换

标签:nbsp   inpu   ring   nan   str   string   put   转换   input   

原文地址:https://www.cnblogs.com/q402599/p/10324183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!