我想将值传递给来自 python 的生动代码。但是我传递的值在每次调用后都会发生变化,但传递给 livy 的值保持不变。
data_while_loop = {
'code': textwrap.dedent("""
user_data_dict = """ + str(user_ver_dict) + """
"""
}
i = 0
map = {}
while i<10:
map['x'] = i
"statement to call value and pass map to livy code"
i+=1
但是第一次迭代中的值与预期的一样。但不是在随后的迭代中。当 map['x'] 在 livy 的代码中传递时。在 while 循环中,map['x'] 的值被发送到上面的 livy 代码。