Files
python-by-example/src/modules/strings.py

4 lines
101 B
Python

def t_strings():
my_template = "This is a value: {test}"
print(my_template.format(test="another"))