python——字符输出ASCII码
总是忘记事,赶紧记下来,Python字符转成ASCII需要用到一个函数ord
# 用户输入字符 ch = input("请输入一个字符: ") # 用户输入ASCII码,并将输入的数字转为整型 uch = int(input("请输入一个ASCII码: ")) print( ch + " 的ASCII 码为", ord(ch)) print( uch , " 对应的字符为", chr(uch))
相关推荐
fengjing81 2020-02-19
一只懒虫 2019-06-29
yangkunlun 2019-06-28
jaminliu0 2019-06-28
chenmingwei 2009-08-28
PythonGCS 2018-07-09
PHP100 2019-03-28
DCXabc 2020-05-05
bnmcvzx 2020-05-03
zhglinux 2019-12-11
typhoonpython 2019-11-19
playis 2019-11-09
风火一回一生不毁 2014-05-29
独行者0 2019-10-31
88941536 2019-08-02
shlamp 2013-01-04
ScarlettYellow 2015-05-05