Python Skip Line
# If you want to skip a line, then you can do that with "\n"
print("Hello\n World\n!")
#It should print:
#Hello
#World
#!
Flow
# If you want to skip a line, then you can do that with "\n"
print("Hello\n World\n!")
#It should print:
#Hello
#World
#!