For this, we’ll simply use the max function.
>>> max('flyiNg')
‘y’
The following are the ASCII values for all the letters of this string-
f- 102
l- 108
y- 121
i- 105
N- 78
g- 103
By this logic, try to explain the following line of code-
>>> max('fly{}iNg')
‘}’
(Bonus: } – 125)