Computer Science, asked by divyanshitiwari987, 3 months ago

What will be the output of the given core? a= "hello" b= "world" print (a+b+"coder")
in Python ​

Answers

Answered by SSanjay31
2

Answer:

the result will be concatenation(+) operator used to add two strings or more

Explanation:

here

print(a+b+''coder'') will give output

helloworldcoder

Attachments:
Similar questions