len, max,
min, and sumsum won’t work properly with strings, for examplelist constructor can be used to create a list from
a stringis operator can be used to test if two values are
the same object== to compare listsWrite a Python function that will return True if and
only if the two lists contain the same items but are not the same
list.
a = [1, 2, 3]
b = a
print(a is b)
Adjust the following program so that first_half does not modify the list it is passed