¶调用解释器
python -c command arg …
pyathon -m module arg …
¶参数传递
¶交互模式
¶解释器和它的环境
¶源代码的编码
- 源代码示例点击下载
所有的python源文件编写都需要声明编码方式(linux/unix系统下)
1 | #! /usr/bin/python #源文件需要的编译环境 |
- 输出
1 | input : python the_word_is_beautiful.py |
python -c command arg …
pyathon -m module arg …
1 | #! /usr/bin/python #源文件需要的编译环境 |
1 | input : python the_word_is_beautiful.py |