String Simple Conversion : Output Format : Development PYTHON examples


PYTHON examples » Development » Output Format »

 

String Simple Conversion


String Simple Conversion:



# The simple conversion, with only a conversion type, is really easy to use:

print 'Price of eggs: $%d' % 42

print 'Hexadecimal price of eggs: %x' % 42


from math import pi

print 'Pi: %f...' % pi

print 'Very inexact estimate of pi: %i' % pi

print 'Using str: %s' % 42L

print 'Using repr: %r' % 42L



           
       



Leave a Comment / Note


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


PYTHON examples

 Navioo Development
» Output Format