On Python 2, when I write
print “this string” + “is good”
I get "this stringis good (without word spacing)
I think now, that I have to shift the double quotes 1 place to the right
you need to include the space somewhere in your string, so either after string
or before is
2 Likes