I'm still quite new to programming and I've been trying to figure out how to create a function that returns (in this case) three elements like strings and print them out in separate lines. For example:
tuple = ("name", "name", "name")
should end up looking like this:
name
name
name
Don't know if it makes sense? I know how to do it with an ordinary for loop, but can't figure it out with a function.