Skip to content

Instantly share code, notes, and snippets.

@filipgorczynski
Created April 20, 2018 05:58
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 filipgorczynski/0660c0e88504f25a4b87438e14f2530b to your computer and use it in GitHub Desktop.
Save filipgorczynski/0660c0e88504f25a4b87438e14f2530b to your computer and use it in GitHub Desktop.
from string import Template
uczen = 'Alpha Bravo'
punkty = 80
tpl = Template("Cześć $uczen. Uzyskałeś $punkty punktów z egzaminu.")
print(tpl.substitute(uczen=uczen, punkty=punkty))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment