I'm stuck on this very basic issue. How do I convert a tuple inside a list into a list.
For example,
[(23,5,6,4)]=>[23,5,6,4]
This is a very basic issue, & I have done this using for loops. But is there a better wayt to do it?
  def make_list(item):
  ''' Helper for get_alert
  '''
  temp = []
  for inst in item:
     temp.append(inst)
  return temp
 
     
     
     
    