text = "hello" for char in text: print(f"'{char}'的ASCII码是:{ord(char)}") character_A = chr(65) print(character_A)