0 out of 464 challenges solved
Write a Python function `convert_to_lowercase` that takes a single string as input and returns the string converted to lowercase.
#### Example Usage
```python [main.nopy]
convert_to_lowercase("Hello World") # Output: "hello world"
convert_to_lowercase("PYTHON") # Output: "python"
convert_to_lowercase("123ABC") # Output: "123abc"
```def convert_to_lowercase(input_string):
"""
Convert the given string to lowercase.
Args:
input_string (str): The string to convert.
Returns:
str: The lowercase version of the input string.
"""
# Your code here
pass