name =
'yejing'
age =
32birth =
'1988-12-13'
wight =
82.5
*** =
'n'print
(" %-20s %d %s %f %.2f %c"
%(name,age,birth,wight,wight,***)
)
輸出結果
yejing 32 1988-12-13 82.500000 82.50 n
%d 表示整數
%s 表示字串
%f 表示浮點數,如果想保留小數,%.2f 保留2位小數
%c 表示一位字元
format 是python內建物件字串的函式,不用import包就可以使用
name =
"yejing"
age =
32print
("姓名:{} 年齡:{}"
.format
(name,age)
)
結果
姓名:yejing 年齡:32
person =
print
("姓名:\n年齡: \n性別: "
.format
(**person)
)
結果
姓名:yejing
年齡: 32
性別: 男
name =
"yejing"
age =
32print
(f" "
)
結果
yejing 32
可以看到這種最方便 輸出字串
5.連線字串 半形句號 是字串連線符,可以把兩個字串連線成乙個字串。例如7 5 echo str.url 技巧 我們可以使用字串連線符累加字串。例如7 6 第一句我們給 str賦值,str表示字串 php中文社群位址是 第二句表示在 str的值上累加字串 www.phpnet.cn 所以,str最後...
輸出字串Count and Say
最近研究輸出字串,稍微總結一下,以後繼續補充 標題如下 the count and say sequence is the sequence of integers beginning as follows 1,11,21,1211,111221,1is read off as one 1 or11...
倒序輸出字串
public static void main string args system.out.println result public static string revertstring string str char chars str.tochararray int len chars.le...