4 lines
101 B
Python
4 lines
101 B
Python
def t_strings():
|
|
my_template = "This is a value: {test}"
|
|
print(my_template.format(test="another"))
|