mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-24 23:07:17 +00:00
8 lines
255 B
Python
8 lines
255 B
Python
import string
|
|
|
|
print(string.format('%.3d', 12))
|
|
print(string.format('%.3f', 12))
|
|
print(string.format('%20.7f', 14.5))
|
|
print(string.format('-- %-40s ---', 'this is a string format test'))
|
|
print(string.format('-- %40s ---', 'this is a string format test'))
|