这篇文章介绍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中文網其他相關文章!