#关于数据类型 #数字{int ,Float,Long} #布尔{真或假,1或0} #字符串{hello world} #列表 #元组 #字典 #字符串格式化 name=input("please input your name:") age=input("please input your age:") job=input("please input your job:") #print("Information of %s \nname:%s \nage:%s \njob:%s" %(name,name,age,job) ) #字符串格式化也可以这样写 msg=""" Information of %s name:%s age:%s job:%s """ %(name,name,age,job) print(msg) 注意:%s代表字符串,%d代表数字,%f代表浮点型,如果上面age:%s换成了age:%d,要在 age=input("please input your age:")换成age=int(input("please input your age:")) 字符串常用功能: 去除空白:name=input("please input your name:").strip() 表示输入的时候,不管前后有没有空格都会去除
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。