1# \n Makes A new Line.
2print("Hello \n World!")
3#Out Put
4#Hello
5# World!
6#Still Counts The Space!
1# Do \n in the middle of your string to create a new line like this
2print("Hello \n World)
3#This will result in 'World' being on the different line then 'Hello'
4#Like this
5#Hello
6#World