C 字串格式化三種方式

2021-08-20 06:20:28 字數 689 閱讀 9917

//$字串格式化,用物件名稱定位(類似模板語言,可以對引數進行邏輯運算,複雜度高,編譯時無法檢查錯誤導致執行時異常)

string name = "horace";

int age = 34;

console.writeline($"he asked, \"is your name ?\", but didn't wait for a reply :-

is year old.

");________

字串格式化,用數字下標定位(推薦)

string formatstring = " ()\n

and ()\n = ()";

int value1 = 16932;

int value2 = 15421;

string result = string.format(formatstring, value1, value2, value1 & value2);

console.writeline(result );

_____________

直接輸出時格式化,用數字下標定位(貌似有引數個數限制,不能超過11個引數)

console.writeline("

tiptotal

/rate:\t ()", tip, tiprate);

python字串格式化三種方式

字串格式化在輸出到終端或檔案中是很有用的,可以給人一種閱讀的美感,下面介紹一下python的三種字串格式化的三種方法 第一種 使用佔位符tester xiaogu programmer laopan print abc s,s tester,programmer 輸出 abc xiaogu,laop...

python的三種字串格式化方法

print hello s and s df another df 但是,有時候,我們有很多的引數要進行格式化,這個時候,乙個乙個一一對應就有點麻煩了,於是就有了第二種,字典形式的。上面那種是tuple形式的。print hello first s and second s 這種字典形式的字串格式化...

Python的三種字串格式化方法

例項 print 我叫 s,今年 u 歲了.dycc 99 我叫 dycc,今年 99 歲了.python字串格式化符號 符號 描述 c 格式化字元及其ascii碼 s格式化字串 d格式化整數 u格式化無符號整數 o格式化無符號八進位制數 x格式化無符號十六進製制數 x格式化無符號十六進製制數 大寫...