0 out of 464 challenges solved
Write a Python function `split_string` that takes a single string as input and returns a list of its individual characters.
#### Example Usage
```python [main.nopy]
split_string("hello") # Output: ['h', 'e', 'l', 'l', 'o']
split_string("world") # Output: ['w', 'o', 'r', 'l', 'd']
```def split_string(word):
"""
Splits the input string into a list of its individual characters.
Args:
word (str): The string to split.
Returns:
list: A list containing each character of the input string.
"""
# Replace the following line with your implementation
pass