Python中的f字串的用法

2021-10-11 14:36:58 字數 456 閱讀 1206

python中的f字串的用法:要在字串中插入變數的值,可在前引號前加上字母f,再將要插入的變數放在花括號內。

舉例子如下:

first_name="ada"

last_name="lovelace"

full_name=f""

print(f"hello,!")

列印結果為:

hello,ada lovelace!

還可以使用f字串來建立訊息,再把整條訊息賦給變數:

舉例子:

first_name="ada"

last_name="lovelace"

full_name=f""

message=f"hello,!"

print(message)

列印結果為:

hello,ada lovelace!

Python中字串的用法

如果字串內容本身包含了單引號或雙引號,此時就需要進行特殊處理 str3 i m a coder str4 spring is here let us jam said woodchuck.str5 we are scared,let s hide in the shade says the bird...

python用法字串 python的字串用法

name my name is and i am old name.capitalize 首字母大寫,其他小寫 print name.capitalize name.count a 統計相同字元的個數 print name.count a 全部小寫 print name.casefold 50個字元...

python字串用法 python字串使用總結

python 字串使用總結 字串是程式中最常見的資料型別。在 python 中,可以使用三種方式定義字串。單 引號 雙引號和三引號。例如 string string string 或者是 string 在使用上,單引號和雙引號沒有什麼區別。三引號的主要功能是在字串中可以 包含換行 也就是說,在三引號...