Computer Science, asked by divansh73, 7 months ago

p="india" print(p+ "delhi") print(p*3) what is the output of the following statement?​

Answers

Answered by gaganadithyareddy9
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 champion85
6

Answer:

Output is:

indiadelhi

indiaindiaindia

Similar questions