"""

THIS IS AN EXAMPLE HEADER.  ANYTHING BETWEEN TRIPLE-QUOTES
IS A MULTI-LINE COMMENT, IGNORED BY PYTHON.

John Rachlin
DS 2000: Intro to Programming with Data


Date: Fri Sep  9 09:37:05 2022

File: hello.py
    
Description: A simple program to say hello


You can customize this header in Spyder:
    
    Preferences....
        Editor....
           Advanced Settings....
                Edit Template for New Files
    
    
"""





# This is a comment - ignored by python
# Our first program: 
    
print("Hello World!")



# A slightly more interesting program
# Going forward, I will use comments to outline
# the steps of my program before I write any code!


# Input your name
name = input("What is your name?: ")

# Say hello to <name>
print("Hello", name)




