Last active
August 31, 2019 07:02
-
-
Save diewland/15018f07f46e6c5abdf9c1974052533c to your computer and use it in GitHub Desktop.
Print fix-width without tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in range(10): | |
print('{:<10}: {}'.format('*'*(i+1), 'row %s' % (i+1))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment