What I have so far:
def print_nested_list(input):
"""Prints out every single string in input, one per line."""
if type(input) is list
for item in input
thank you for the response - I get that rather than using just a for loop, I should have used that in combination with calling the print_nested_list function.
So to fulfill test cases:
print_nested_list(['cs1110'])
print_nested_list(['this', ['is', 'a'], 'list', ['list', 'list' ]])
print_nested_list([[['cs1110', 'opython'], 'nested'], 'recursion', 'test'])
To clarify, the last test case should look like this:
cs1110
opython
nested
recursion
test