最近在回顧python語言,順便整理一下自己的思路。
對於個人來說,測試人員學習開發語言,python是最好的選擇,當然也看個人喜好,其次,測試人員學開發不為了去做開發,而是為了更好的用開發語言去輔助自己的測試工作。
python3的輸出:
#-*-coding:utf-8-*-
#常見的輸出方式:print
a = 123b = "
這是字元
"c =true
print ("
直接輸出內容")
print ("
這是數字:
",a)
print ("
這是字元:
",b)
print ("
這是布林:
",c)
對於有基礎的朋友來說,這個簡直so easy!!
好吧,那我繼續瞎扯:
python3的格式化輸出,語法:f""
#-*-coding:utf-8-*-
#格式化輸出
a = "
money
"print (f"
我想要很多很多,哈哈哈!!!
")
結果:
我想要很多很多money,哈哈哈!!!
理解起來是不是也很so easy,而且用處很大,其中的「f」就是「format」格式化的意思。
來,我們繼續格式化它,這次使用「.format()」的方式:
二話不說就上**:
#-*-coding:utf-8-*-
#使用.format()的方式來進行格式化
a =「我想要{}。」
b =「money」
print (a.format(b))
結果:
我想要money。
綜上,我們可以看到兩種格式化字串的方式,一種是f"{}",一種是.format()的方式,後者大家可以看到,需要和定義的變數值中的「{}」一起使用,比如:
我定義了變數a,變數a的字串中結尾有乙個「{}」,這個大括號在哪兒,你的值就會顯示在哪兒,變數b就是要顯示在變數a中,所有結果就是:
我想要money。
ps:好現實。。。哈哈。。。
Python3 格式化輸出
列印字串 print my name is s alfred.xue 輸出效果 my name is alfred.xue列印整數 print i am d years old.25 輸出效果 i am 25 years old.列印浮點數 print his height is f m 1.70 ...
Python3 格式化輸出 s d 等
1.列印字串 print my name is s alfred.xue 輸出效果 my name is alfred.xue 2.列印整數 print i am d years old.25 輸出效果 i am 25 years old.3.列印浮點數 print his height is f ...
Python3 格式化輸出 s d 等
python3 格式化輸出 s d 等 1.列印字串 print my name is s alfred.xue 輸出效果 my name is alfred.xue 2.列印整數 print i am d years old.25 輸出效果 i am 25 years old.3.列印浮點數 pr...