在Python中,如何在不使用全局变量的情况下在第二个函数中使用函数的return语句?

时间:2012-10-14 05:14:42

标签: python variables global

我正在进行一项赋值,其中约束指定我不能使用全局变量。仅为特定功能定义变量。我想知道是否有办法获取函数返回的内容(字符串),然后创建一个可以使用该字符串的新函数,而不使用全局变量?注意:我可以使用变量,而不是全局变量。谢谢!

根据请求,这是一个例子。

def func1():
     return "output"
def func2():
     #loop over the string "output",just for example

2 个答案:

答案 0 :(得分:4)

>>> def a():
...     return 'x'
... 
>>> def b(s):
...     print 'b recieved', s
... 
>>> b(a())
b recieved x

答案 1 :(得分:0)

为什么不将变量作为参数传递给新函数?

e.g。

s = someFunc1()

someFunc2(s)