+1 vote
in Python by
Read the Following program:

def example(a):  

    aa = a + '1'  

     aa = a*1  

    return a  

>>>example("javatpoint")  

What will be the output of this statement?

i) hello2hello2

ii) hello2

iii) Cannot perform mathematical operation on strings

iv) indentationError

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
0 votes
asked Jan 19, 2021 in Python by SakshiSharma
...