p="india" print(p+ "delhi") print(p*3) what is the output of the following statement?
Answers
Answered by
12
Answer:
Hey! This is in python...
Output is:
indiadelhi ( '+' represents concatenating a string.... india+delhi)
indiaindiaindia ( '*' in string represents the string to be displayed multiple times....india*3)
Answered by
6
Answer:
Output is:
indiadelhi
indiaindiaindia
Similar questions