So I've been able to get printNow
to show a single variable in a line but I need to display two in a single line, using the printNow
feature (which I need to use over just the standard print
feature). I can only get it to display one. I did a search and wasn't able to find any examples of multiple strings displayed on one line.
var1 = "text"
var2 = "this too"
printNow ("Display this:" +str(var1) "And this:" +str(var2))
I am aware the above statement is wrong, but I wrote it like that to give a better example of what I am trying to do.