To get the ASCII code of a character, use the ord() function. >>> ord('h') 104 >>> ord('a') 97 >>> ord('^') 94. To get the ...
確定! 回上一頁