#comment line - will not be executed and comments are for information only #Author: yana #Date: Aug 31, 20 #Description: This program prints hello on the screen using #double quotes and single quotes. This program also demonstrates #how to print text on separate lines #To save the file push both: CTRL and O together and then ENTER print("hello") print('hello') print("""hello""") #now we will print I love Python on 3 lines (I) (Love) (Python) using 2 #methods #Method 1: we will use 3 print statements print("I") print('Love') print("Python") #Method 2: using triple quotes print("""I Love Python""")