- 1
I feel like I have this right but can’t figure out the spaces
name = "James" age = "42" print( name + 'is' + age + 'years old') Thanks for feedback
3 Respuestas
+ 5
You can create spaces inside quotes or use comma as concat operator.
' is '
or
name, 'is',....
+ 2
Rafael, what's stopping you from writing text with a space?
+ 1
Got it!