当前位置:首页 » python教程 » 正文

Python打印特殊符号及对应编码解析

看: 1545次  时间:2020-07-10  分类 : python教程

1、调用字符映射表输入特殊符号

在键盘上按win+R,在打开的对话框中输入“charmap”,会出现字符映射表:

2、利用字符编码输入特殊符号

#打印Σ
print(chr(931))
#打印←
print(chr(8592))
#打印→
print(chr(8594))
#打印↑
print(chr(8593))
#打印↓
print(chr(8595))
#打印❋
print(chr(10059))

结果:

Σ
←
→
↑
↓
❋

特殊字符对应编码:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持python博客。

<< 上一篇 下一篇 >>

搜索

推荐资源

  Powered By python教程网   鲁ICP备18013710号
python博客 - 小白学python最友好的网站!