Q. Write the output of the following code
Code:
print('cs' + 'ip' if '234'.isdigit( ) else 'IT' + '-402')
β
Correct Answer: (C)
csip
print('cs' + 'ip' if '234'.isdigit( ) else 'IT' + '-402')
You must be Logged in to update hint/solution