目录
  1. 1. 调用解释器
  2. 2. 参数传递
  3. 3. 交互模式
  4. 4. 解释器和它的环境
    1. 4.1. 源代码的编码
使用解释器

调用解释器

python -c command arg …
pyathon -m module arg …

参数传递

交互模式

解释器和它的环境

源代码的编码

  • 源代码示例点击下载
    所有的python源文件编写都需要声明编码方式(linux/unix系统下)
1
2
3
4
5
#! /usr/bin/python #源文件需要的编译环境
#-*-coding:utf-8-*-#编码方式,在这里编码为utf-8
the_word_is_beautiful = TRUE
if the_word_is_beautiful: //if语句
print "that's right!"
  • 输出
1
2
input : python the_word_is_beautiful.py
output :that's right!
文章作者: rack-leen
文章链接: http://yoursite.com/2019/05/03/Python/python-tutorial-notes/chapter2_using_python_interpreter/Using_the_python_interpreter/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 rack-leen's blog
打赏
  • 微信
  • 支付宝

评论