How would you write text on a new line when only
using print once?
For example you want to write
Hello world!
Hello world!
To this you would use \n
print(“Hello world!\nhello world!”)
What is an indentation error?
An indentation error means that there is an unexpected indent.