What would be the output of following code if ntpl = ("Hello”, “Nita”, “How's", "life?'')
(a, b, c, d) = ntpl
print ("a is:", a)
print ("b is:", b)
print ("c is:", c)
print ("d is:", d)
ntpl = (a, b, c, d)
print (ntpl[0][0]+ntpl[1][1], ntpl[1])
Answers
Answered by
0
Answer:
B is b okkkkkkkkkkkkkkk
Answered by
0
Explanation:
hope the attachment helps you
Attachments:
Similar questions