I have a list of lists each of those lists having one element. Is there a "pythonic" way to turn this into a list of elements that aren't lists outside of using the loop displayed below?
un_list = []
for x in home_times:
    y=x[0]
    un_list.append(y)
 
     
    