Q. What will be output of this expression:
Code:
'p' + 'q' if '12'.isdigit() else 'r' + 's'
β
Correct Answer: (A)
pq
'p' + 'q' if '12'.isdigit() else 'r' + 's'
You must be Logged in to update hint/solution