Difference between print and println in Swift
Difference between print and println:
i. print: print can’t format anything, it simply takes a string and print it.
ii. println: println same thing as print()
. However, it will append a newline character \n
at the end.