Computer Science, asked by Anonymous, 9 months ago

Write the output of the given Python code :

#!/user/bin/python
list1, list2 = [123, ‘xyz’], [456, ‘abc’]
print cmpt(list1, list2);
print cmp(list2, list1);
list3 = list2 + [786];
print cmp(list2, list3)

Answers

Answered by gaganadithyareddy9
1

Answer:

An error occurs

Explanation:

There is nothing called 'cmpt'

Similar questions