标签: python
我有一个功能
def doStuff(): thing = str(request.args.get('thing')) return thing
我想从带有参数'foo'的脚本中调用它。我怎么能这样做?
'foo'
答案 0 :(得分:1)
def doStuff(bar): thing = str(bar) return thing doStuff('foo')