what happens when o try to print a function python code example
Example 1: print in python
# the print commmand will write anything in your out put box
print("hello world")
Example 2: print in python
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')