ascii()方法返回一個字符串,其中包含對象的可打印表示形式。它使用\x,\u或\U轉義符轉義字符串中的非ASCII字符。
ascii()的語法為:
ascii(object)
它返回一個包含對象可打印表示形式的字符串。
例如,?更改為\xf6n,√更改為\u221a
字符串中的非ASCII字符使用\x,\u或\U進行轉義。
normalText = 'Python is interesting' print(ascii(normalText)) otherText = 'Pyth?n is interesting' print(ascii(otherText)) print('Pyth\xf6n is interesting')
運行該程序時,輸出為:
'Python is interesting' 'Pyth\xf6n is interesting' Pyth?n is interesting
randomList = ['Python', 'Pyth?n', 5] print(ascii(randomList))
運行該程序時,輸出為:
['Python', 'Pyth\xf6n', 5]