抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >


Python ASCII 字符串 转换

ASCII 转字符

ASCII 转字符.py
def ASCIItostr():
try:
s = input()
s=s.split()
for i in s:
print(chr(int(i)),end="")
print()
except Exception as e:
print("",end="")

if __name__ == '__main__':

try:
while True:
ASCIItostr()
except EOFError:
exit()

字符转 ASCII

字符转 ASCII.py
def strtoASCII():
try:
s = input()
for i in s:
print(ord(str(i)),end=" ")
print()
except Exception as e:
print("",end="")

if __name__ == '__main__':

try:
while True:
strtoASCII()
except EOFError:
exit()

推荐阅读
Python Morse Python Morse Python RailFenceCipher Python RailFenceCipher Python Base Python Base Python Caesar Python Caesar Python MD5 Python MD5 Cryptography Cryptography

留言区

Are You A Robot?