What is the role of "*" inside of a print function in Python?
print ("Hello World!\n")
print (*"Hello World!\n")
Output of the first print function is
Hello World!
Output of the second function is
H e l l o W o r l d !
But in python 2.7 it does not work!