Created
December 21, 2016 14:00
-
-
Save potix2/79cd2ff12b9ab2f0cd98e08785fc85a3 to your computer and use it in GitHub Desktop.
string.Template test
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
>>> from string import Template | |
>>> import os | |
>>> s = Template("I am $USER") | |
>>> s.substitute(os.environ) | |
'I am potix2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment