Last active
November 19, 2019 15:53
-
-
Save daneah/14e23b624814895de918ed5d40da758b to your computer and use it in GitHub Desktop.
Copy & paste error
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
one = '1' | |
two = '2' | |
three = '3' | |
thing = f'{one} {two} {three}' |
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
thing = '{one} {two} {three}'.format( | |
one='1', | |
two='2', | |
three='3', | |
) |
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
one = '1', | |
two = '2', | |
three = '3', | |
thing = f'{one} {two} {three}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment