Hex & Octal.py

# Adding specific formatting >>> '%-10s = %10s' % ('spam', 123.4567) 'spam = 123.4567' >>> '%10s = %-10s' % ('spam', 123.4567) ' spam = 123.4567 ' >>> '%(plat)10s = %(kind)-10s' % dict(plat=sys.platform, kind='laptop') ' win32 = laptop ' # Floating-point numbers >>> '%e, %.3e, %g' % (3.14159, 3.14159, 3.14159) '3.141590e+00, 3.142e+00, 3.14159' >>> '%f, %.2f, %06.2f' % (3.14159, 3.14159, 3.14159) '3.141590, 3.14, 003.14' # Hex and octal, but not binary (see ahead) >>> '%x, %o' % (255, 255) 'ff, 377'
Adding specific formatting

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.