Given lst = [30, 1, 2, 1, 0], what is the list after applying each of the fol-lowing statements? Assume that each line of code is independent.
lst.append(40)lst.insert(1, 43)lst.extend([1, 43])lst.remove(1)lst.pop(1)lst.pop()lst.sort()lst.reverse()random.shuffle(lst)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here