将变量从for循环传递到Python中的另一个函数

时间:2017-10-01 06:47:03

标签: python python-3.x

我仍然是python的新手。请原谅任何基本错误。我一直在读书并尝试,但我还没有能够让它发挥作用。 我脚本中的主要功能打印出一年内的所有日期。我想将每个日期值传递给下一个函数(fun_Phase1),直到处理完一年中的所有日期。 任何帮助将不胜感激。

<<<<<<<<<<<<<<<<<<<<

>>>>>>>>>>>>>>>>>>>>

提前致谢。

1 个答案:

答案 0 :(得分:1)

  

我尝试运行你的代码,但正如@PRMoureu所说,你只需要改变这个

def fun_Phase1(_DATE):
    # Run additional code here
    print "You are in function Phase1 and the date is " + _DATE

到这个

def fun_Phase1(_DATE):
    # Run additional code here
    print ("You are in function Phase1 and the date is " + _DATE)