s = "Hello" print("Hello 每个字符的ASCII码:") for char in s: print(f"{char}: {ord(char)}") print("\n验证65对应的字符:") print(f"chr(65) = {chr(65)}")