码迷,mamicode.com
首页 > 编程语言 > 详细

python——字符输出ASCII码

时间:2020-01-24 17:23:25      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:style   ascii   col   pytho   需要   忘记   ascii码   put   数字   

  总是忘记事,赶紧记下来,Python字符转成ASCII需要用到一个函数ord

1 # 用户输入字符
2 ch = input("请输入一个字符: ")
3  
4 # 用户输入ASCII码,并将输入的数字转为整型
5 uch = int(input("请输入一个ASCII码: "))  
6  
7 print( ch + " 的ASCII 码为", ord(ch))
8 print( uch , " 对应的字符为", chr(uch))

 

python——字符输出ASCII码

标签:style   ascii   col   pytho   需要   忘记   ascii码   put   数字   

原文地址:https://www.cnblogs.com/daker-code/p/12232292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!