1from markupsafe import escape
2
3
4def run():
5    string = "<strong>Hello World!</strong>" * 1000
6    escape(string)
7