Skip to content

Instantly share code, notes, and snippets.

@tuxmartin
Last active July 31, 2017 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuxmartin/f09b308df18500ca35433fd921c20f66 to your computer and use it in GitHub Desktop.
Save tuxmartin/f09b308df18500ca35433fd921c20f66 to your computer and use it in GitHub Desktop.
Jednoducha sablona v pythonu pomoci slovniku
message = """
User: {u},
mail: {mail},
agsdgsdng nsgoa sdgnadosfdhfh
"""
print message
d = {'u': "12345",
'mail': "user@exmaple.net",
}
print message.format(**d)
martin@martin /tmp $ python test.py
User: {u},
mail: {mail},
agsdgsdng nsgoa sdgnadosfdhfh
User: 12345,
mail: user@exmaple.net,
agsdgsdng nsgoa sdgnadosfdhfh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment