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

4 lines
114 B
Python
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
ucode = ''.join(chr(int(n, 16))
for n in ['61', '73', '20dd', '64', '66', '305'])
say_rev(ucode)