Write a function which takes a number and returns the corresponding ASCII char for that value.
Example
get_char(65) # => 'A'
For ASCII table, you can refer to http://www.asciitable.com/
def get_char(c):
pass
def get_char(c):
return chr(c)
Write a function which takes a number and returns the corresponding ASCII char for that value.
Example
get_char(65) # => 'A'
For ASCII table, you can refer to http://www.asciitable.com/
def get_char(c):
pass
def get_char(c):
return chr(c)