The function checks if the input string contains any non-alphabetic characters. If it does, the function returns "one"; otherwise, it returns "zero".

[CODE]:
```
def f(x):
    if any(c.isalpha() == False for c in x):
        return "one"
    else:
        return "zero"
```