Explore a diverse range of topics and get answers from knowledgeable individuals on IDNLearn.com. Find the solutions you need quickly and accurately with help from our knowledgeable community.
Answer:
What will be printed if the below code is run?
1. a = "123"
2. b = “456"
3. a = b + "123"
4. b = a
5. print (b + a)