Re: what does %u mean?

2006-06-08 Thread scruffy . mogwai
I'm not sure, but I think it has something to do with unicode. print "%i" % 1 // Prints the integer 1 as a string. print "%u" % (-5) // Prints -5 as a unicode string??? yaru22 wrote: > Hi. I just started learning python. > > In the exercise in my book, it asks me to try print "%u" % (-5) > > I'm

Re: what does %u mean?

2006-06-08 Thread scruffy . mogwai
Someone beat me to the reply -- and their explanation sounds a lot better than mine! i guess you learn something new everyday... [EMAIL PROTECTED] wrote: > I'm not sure, but I think it has something to do with unicode. > print "%i" % 1 // Prints the integer 1 as a string. > print "%u" % (-5) //