Quick actions

cmd+k|ctrl+k

Navigation

Languages

Unicode(10進数)文字列変換

Snippet info

Language

Python

Visibility

public

Author

potetotime

Created

2021-12-19T13:38:25.389701Z

Updated

2021-12-19T13:38:25.389701Z

inp=input()
inp=inp.split(' ')
print(inp)
n=0
for i in inp:
    print(chr(int(i)),end='')
    n+=1
INFO