Simple Problems: Caps and Commas

KefX keflimarcusx at aol.comNOSPAM
Mon Oct 27 04:06:05 EST 2003


>I keep looking, but I don't see any "extra spaces".

Then either you don't understand what I mean, or you're not looking hard
enough.

print "this, ", "that, ", "and the other"

The "extra spaces" are the spaces after each comma in the first two
double-quoted strings. It prints out:
this,  that,  and the other

instead of:
this, that, and the other

- Kef




More information about the Python-list mailing list