You can download this code by clicking the button below.
This code is now available for download.
This function takes an integer argument representing an ASCII code and returns the corresponding character.
Technology Stack : Python built-in function chr()
Code Type : Conversion function
Code Difficulty :
def achr(code):
"""
将ASCII码转换为相应的字符。
"""
return chr(code)