python 如何在python中将参数提供给命令行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 如何在python中将参数提供给命令行相关的知识,希望对你有一定的参考价值。

import sys

def addfoo(string):
    string += "foo"
    return string

y = sys.argv[1]
y = addfoo(y)

print(y)

以上是关于python 如何在python中将参数提供给命令行的主要内容,如果未能解决你的问题,请参考以下文章

在 Eclipse(Pydev) 中将命令行参数传递给 Python 脚本

如何在 Windows 中将 ghostscript DLL 库提供给 python?

如何从 python 脚本中将参数传递给 cmd.exe?

没有指针,我可以在 Python 中将引用作为参数传递吗? [复制]

如何在 Cython 中将 Python 对象转换为 C++ 类型

python命令行传递参数的两种方式