initial commit
This commit is contained in:
12
Unreal/foo.py
Normal file
12
Unreal/foo.py
Normal file
@ -0,0 +1,12 @@
|
||||
def prettify(val: str) -> str:
|
||||
return val.removeprefix("<!--").removesuffix("-->").strip()
|
||||
|
||||
lines = []
|
||||
|
||||
while True:
|
||||
try:
|
||||
lines.append(prettify(input()))
|
||||
except EOFError:
|
||||
break
|
||||
|
||||
print("\n".join(lines))
|
Reference in New Issue
Block a user