python PrintDocument code example
Example: print in python
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')