python中的这个函数不能正常工作

时间:2015-10-21 06:01:32

标签: python-2.7

enter image description here This code is not running and giving me error can anyone please help

此代码给我错误,请帮助

1 个答案:

答案 0 :(得分:0)

当你在python中声明一个函数时,你应该只写出它所需的变量标题:

def my_func(a, b, next_var, another_var, etc):
    ...

但您写了def TS(k[0],ts):k[0]不能成为变量的标题,这就是您的代码出错的原因。

作为解决方案,您可以使用k[0]替换函数中的k0