You can download this code by clicking the button below.
This code is now available for download.
Converts an integer to its corresponding ASCII character.
Technology Stack : Built-in library: None
Code Type : Function
Code Difficulty :
def achr(arg1):
"""
将整数转换为ASCII字符。
"""
return chr(arg1)