Write a program that uses string concatenation (the + operator) to print the following four lines, each using a single print() statement:
Hello, Python!
Learning Python is fun!
Python 3 is cool!
Hello,
World!
Requirements:
"Hello, " and "Python!"."Learning", " ", "Python", " ", "is", " ", and "fun!"."Python ", "3", " is", " ", and "cool!"."Hello," and "World!" on two separate lines using a single print() statement and the newline character \n.