The function counts the number of characters in the input string that also exist in the word "python".

[CODE]:
```python
def count_chars_in_python(input_string):
    return sum(1 for c in input_string.lower() if c in 'python')
```