def describe_year(year):
    """A short description of what this function does — this is a docstring."""
    if year < 1930:
        return "old enough to likely be public domain"
    else:
        return "too recent to assume public domain"

print(describe_year(1889))
print(describe_year(2020))