In Python, I have tuple, to convert tuple to list i use
tuple1 = (1,2,3,4,5) eq_list = [] eq_list += tuple1
it works fine.But if i use :