单行注释: #
多行注释:"""为开始,"""结束
捕获参数: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']
你好,世界!
本文共 263 字,大约阅读时间需要 1 分钟。
单行注释: #
多行注释:"""为开始,"""结束
捕获参数: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']
你好,世界!
转载于:https://blog.51cto.com/2889688/1904355