Ethan Furman <et...@stoneleaf.us> writes:

> If I'm printing the number 735, or any other positive or negative
> integer, is there any difference between %7s and %7d?
>
> ~Ethan~

To link with another thread:

>>> "%s" % True
'True'
>>> "%d" % True
'1'

-- 
Arnaud
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to