python t-string

Creator
Creator
Seonglae Cho
Created
Created
2025 Jun 9 11:6
Editor
Edited
Edited
2025 Jun 9 11:10
Refs
Refs
Like f-strings, you can put expressions inside {}, but instead of evaluating to a string immediately, it creates a string.templatelib.Template object
This Template object provides the original string fragments and variable values separately through the .strings and .values properties, allowing developers to safely escape or post-process them as needed.
 
 
 
 
 

Recommendations