Created
May 19, 2021 04:28
-
-
Save ychoi-kr/159b95f68e38518324cc85583c33e6eb to your computer and use it in GitHub Desktop.
Python format string
This file contains 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 n in range(3, 20, 3): | |
... print(f'{n:2d}') | |
... | |
3 | |
6 | |
9 | |
12 | |
15 | |
18 |
This file contains 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 n in range(3, 20, 3): | |
... print(f'{n:02d}') | |
... | |
03 | |
06 | |
09 | |
12 | |
15 | |
18 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see also: