Python 中的字串大寫
Muhammad Maisam Abbas
2023年1月30日
2021年3月21日
在本教程中,我們將討論在 Python 中用於字串大寫的方法。
Python 中的 upper()
函式將字串大寫
upper()
函式為我們提供了一個包含所有大寫字元的字串。以下程式碼示例向我們展示瞭如何在 Python 中使用 upper()
函式來大寫一個字串。
string = "this is a string."
uppercasestring = string.upper()
print(uppercasestring)
輸出:
THIS IS A STRING
在上面的程式碼中,我們首先使用所有小寫字元初始化一個字串。之後,我們使用 upper()
函式將字串轉換為大寫。
upper()
將所有字母轉換為大寫。如果我們只想大寫字串中的第一個字元,則必須使用 capitalize()
函式。
在 Python 中使用 capitalize()
函式將字串大寫
capitalize()
函式僅將字串的首字母轉換為大寫。以下程式碼示例顯示瞭如何使用 capitalize()
函式將字串大寫。
string = "this is a string."
capitalizedstring = string.capitalize()
print(capitalizedstring)
輸出:
This is a string.
在上面的程式碼中,我們首先使用所有小寫字元初始化一個字串。之後,我們使用 capitalize()
函式將字串的第一個字元大寫。
Author: Muhammad Maisam Abbas
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn