Tester.py

sep = "!"
result = ""
i = 0
while i < 2:
    result += "ha" + sep
    i += 1
print(result)
What is the output?
Be careful of the whitespace(space,newline) in your answer.