[python] 1.解释器
Posted 懒惰的咕噜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python] 1.解释器相关的知识,希望对你有一定的参考价值。
- 参数
1. -c , -m, -i
python test.py sys.argv = [‘test.py‘]
python -c ‘print "a"‘ sys.argv = [‘-c‘]
python -m test sys.argv = [‘/home/test.py‘]
python -i test.py 执行完脚本后进入交互模式 - ord, chr
1. ord
ord(u"€") = 8364
2. chr
chr(8364) = u"€"
以上是关于[python] 1.解释器的主要内容,如果未能解决你的问题,请参考以下文章