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 [c]print()[/c]. However, it will append a newline character [c]\n[/c] at the end.