Integer and String Output : Integer format : Data Type PYTHON TUTORIALS


PYTHON TUTORIALS » Data Type » Integer format »

 

Integer and String Output


print "%+d" 4
print "%+d" % -4
print "we are at %d%%" 100
print 'Your host is: %s' % 'earth'
print 'Host: %stPort: %d' % ('mars', 80)
num = 123
print 'dec: %d/oct: %#o/hex: %#X' % (num, num, num)
print "MM/DD/YY = %02d/%02d/%d" (21567)
w, p = 'Web', 'page'
print 'http://xxx.yyy.zzz/%s/%s.html' % (w, p)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Data Type
» Integer format