7 lines
97 B
Python
7 lines
97 B
Python
|
|
from markupsafe import escape
|
||
|
|
|
||
|
|
|
||
|
|
def run():
|
||
|
|
string = "Hello World!" * 1000
|
||
|
|
escape(string)
|