OK I was looking into number formatting and I found that you could use %d or %i to format an integer. For example:
number = 8
print "your number is %i." % number
or
number = 8
print "your number is %d." % number
But what is the difference? I mean i found something but it was total jibberish. Anyone speak Mild-Code or English here?