Python template

To replace tokens in the HTML template I use method str.format()

line3 = '      {ARTICLE_TITLE}'
line3 = line3.format(ARTICLE_URL="http...", ARTICLE_TITLE="My Note")
print( line3 )

My Note'

No comments:

Post a Comment