Find why the second result contains a tag from the first call.
Python
def add_tag(tag, tags=[]):
tags.append(tag)
return tags
print(add_tag("new"))
print(add_tag("sale"))
def add_tag(tag, tags=[]):
tags.append(tag)
return tags
print(add_tag("new"))
print(add_tag("sale"))