String formatting. : Format : String PYTHON TUTORIALS


PYTHON TUTORIALS » String » Format »

 

String formatting.


integerValue = 4237
print "Integer ", integerValue
print "Decimal integer %d" % integerValue 
print "Hexadecimal integer %xn" % integerValue

floatValue = 123456.789
print "Float", floatValue
print "Default float %f" % floatValue
print "Default exponential %en" % floatValue

print "Right justify integer (%8d)" % integerValue
print "Left justify integer  (%-8d)n" % integerValue

stringValue = "String formatting"
print "Force eight digits in integer %.8d" % integerValue
print "Five digits after decimal in float %.5f" % floatValue
print "Fifteen and five characters allowed in string:"
print "(%.15s) (%.5s)" stringValue, stringValue )



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo String
» Format