Rumah > Artikel > pembangunan bahagian belakang > 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']
你好,世界!
Atas ialah kandungan terperinci Python注释和脚本参数介绍. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!