Exam PCAP All QuestionsBrowse all questions from this exam
Question 105

What is the expected output of the following code?

    Correct Answer: D

    B

Discussion
macxszOption: B

correct answer: B. c

Jos015Option: B

mytu = ('a','b','c') m = tuple(map(lambda x:chr(ord(x) +1), mytu)) print (m[-2]) print (m)