List = [1,2,3,4,5]
# Removing element from the
# Set using the pop() method
List.pop()
print("
List after popping an element: ")
print(List)
# Removing element at a
# specific location from the
# Set using the pop() method
List.pop(1)
print("
List after popping a specific element: ")
print(List)