python获取命令行参数的代码
程序员文章站
2023-04-05 22:47:35
如下的内容内容是关于python获取命令行参数的内容,希望能对大家有所好处。 # [SNIPPET_NAME: Command line arguments]# [SNIPPET_CATEGORIES: Python Core]# [SNIPPET_DESCRIPTION: Prints each ......
如下的内容内容是关于python获取命令行参数的内容,希望能对大家有所好处。
# [snippet_name: command line arguments]
# [snippet_categories: python core]
# [snippet_description: prints each command line argument per line]
# [snippet_author: tiago boldt sousa <tiagoboldt@gmail.com>]
# [snippet_license: gpl]
import sys
for x in sys.argv:
print x
下一篇: Linux安装Redis~