chr() function and ord() function in Python
Topic: chr() function and ord() function in Python What is the Use of chr() function and ord() function in Python chr() function in Python The chr() function in Python takes an integer Ascii code and returns the character (actually a string of one character)at that Ascii code value. For example , chr(65) will return ‘A’… Read More »