我想知道如果一个函数以raw_input开头,如何在python中通过函数传递一些变量 像这样:
def function1():
a = raw_input("Type something: ")
return a
def function2():
b = function1() #i want b to get value of a
当我尝试这个并尝试打印" b"它只是再次向我展示"键入内容:"一次又一次
答案 0 :(得分:0)
您需要调用function2
def function1():
a = raw_input("Type something: ")
return a
def function2():
b = function1()
print b
function2()