In your code you defining lst1 as lst1 = [] but use lst later in the code.
lst1
lst1 = []
lst
To compare: lst1 lst
Do you see the difference?