RosettaCodeData/Task/Reverse-a-string/Python/reverse-a-string-6.py

4 lines
114 B
Python

ucode = ''.join(chr(int(n, 16))
for n in ['61', '73', '20dd', '64', '66', '305'])
say_rev(ucode)