Python 中有許多方法可以進行文字轉換,例如大小寫轉換、編碼轉換等等。
# 大小寫轉換 string = "Hello World" string_upper = string.upper() string_lower = string.lower() print(string_upper) # 輸出 "HELLO WORLD" print(string_lower) # 輸出 "hello world" # 編碼轉換 string = "你好" unicode_string = string.encode('unicode_escape') utf8_string = string.encode('utf-8') print(unicode_string) # 輸出 "\u4f60\u597d" print(utf8_string) # 輸出 b'\xe4\xbd\xa0\xe5\xa5\xbd'
另外,Python 中還有許多第三方庫可以用于文字轉換,例如 pyencode、chardet 等等。這些庫提供了更多的轉換選項和格式,可以根據具體的需求進行選擇。