python注释和脚本参数介绍

这篇文章介绍python注释和脚本参数介绍

单行注释: #

多行注释:”””为开始,”””结束

捕获参数:import sys

sys.argv 表示argv功能在sys模块里边

eg:hello.py

#_*_ coding: utf-8 _*_

import sys

print sys.argv

print ‘你好,世界!’

执行结果:

e:\>pythonhello.py localhost:8001

[‘hello.py’,’localhost:8001′]

你好,世界!

以上就是python注释和脚本参数介绍的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论