063:文字と文字コードを相互変換する
>>> ord('A')
65
>>> chr(65)
'A'
おまけ: 半角と全角を相互変換する
http://www.r-stone.net/blogs/satoshi/2008/02/python_16.html
063:文字と文字コードを相互変換する
>>> ord('A')
65
>>> chr(65)
'A'
おまけ: 半角と全角を相互変換する
http://www.r-stone.net/blogs/satoshi/2008/02/python_16.html