您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python中print輸出形式有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、普通輸出,Print函數接受零或多個參數,并將單個空格作為默認分隔符顯示結果。為輸出Python程序的值提供了簡單的方法,實際參數sep的設置可以改變分隔符。另外,每次打印都默認以換行符結束。這種行為可以通過設置實際參數end來改變。
print('hello') #結果:hello print('hello','world') #結果:hello world print('hello','world',sep='***')#sep指定特定的分隔符 #結果:hello***world print('hello','world',end='****')#end 設置結尾參數 #結果:hello world****
2、格式化輸出,格式字符串可以包含一個或多個轉換聲明。轉換字符告訴格式化運算符,什么類型的值會插入字符串的相應位置。可在%和格式化字符之間添加格式化修改符。
name="apple" price=6 print("the %s costs %d cent" %(name,price)) #結果:the apple costs 6 cent print("The %+10s costs %5.2f cents" % (name,price))#+代表右對齊,10代表占用10個字符 #結果:The apple costs 6.00 cents print("The %+10s costs %10.2f cents" % (name,price))#10.2代表占用10個字符,并保留2位小數。 #結果:The apple costs 6.00 cents itemdict = {"item":"banana","cost":24}#使用字典傳遞參數 print("The %(item)s costs %(cost)7.1f cents" % itemdict) #結果:The banana costs 24.0 cents
關于“python中print輸出形式有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。