Task
Define a function contains_python_chars that takes one parameter:
When called, the function should return a boolean value indicating whether the string contains any combination of the word “python”. The letters of “python” can be in any order e.g. “nohtyp” but must not be interrupted by any other characters. The function should be case-insensitive.
Starter Code