0
My question is about python?
c = "moon" b = "that" a = "honey" print(c + a) is my for this code will run this code or not?
2 Answers
+ 2
Hi! You can check this by running your code in the coding section. (Code playground)
In the app, visit the Code Playground </> section using the navbar at the top. Otherwise just follow this link:
https://code.sololearn.com/
When in there, you will see a green (or any other theme specific color) circular button at the bottom right with a plus sign at the center. Tap on it. Choose the language.
https://sololearn.com/compiler-playground/Wek0V1MyIR2r/?ref=app
+ 2
Your code will print "moonhoney" to the console because string concatenation occurred.