
December 18th, 2012, 08:12 PM
|
|
Registered User
|
|
Join Date: Dec 2012
Posts: 6
Time spent in forums: 26 m 34 sec
Reputation Power: 0
|
|
|
Another Newbie ? What's the difference between %u and %s
x = "There are %d types of people." % 10
binary = "binary"
do_not = "don't"
y = "Those who know %u and those who %u." % (binary, do_not)
print x
print y
print "I said: %r." % x
print "I also said: '%u'." % y
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print joke_evaluation % hilarious
w = "This is the left side of..."
e = "a string with a right side."
print w + e
Why when I use %u it doesn't work, but if I use %s it does work?
and I'm suppused to be using the # sign to post these post I tried that but the preview it looked like it would be hard to read for others so put it simple text
|