您好,登錄后才能下訂單哦!
#關(guān)于數(shù)據(jù)類型 #數(shù)字{int ,F(xiàn)loat,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代表數(shù)字,%f代表浮點(diǎn)型,如果上面age:%s換成了age:%d,要在 age=input("please input your age:")換成age=int(input("please input your age:")) 字符串常用功能: 去除空白:name=input("please input your name:").strip() 表示輸入的時(shí)候,不管前后有沒有空格都會(huì)去除
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。