As I join 2 strings like:
print("not" + "X")
The result is like this:
notX
How could I make this into:
not X
As I join 2 strings like:
print("not" + "X")
The result is like this:
notX
How could I make this into:
not X
Try using:
print("not","X")
# or:
' '.join(i for i in ['not','X'])
# or:
' '.join(('not','X'))
instead of:
print("not"+"X")