# Arup Guha
# 6/6/2022
# My First Python Program!

# Our first print.
print("Put anything we want in here!")

# Our second print.
print("And here.")

# Escape sequence for a double quote.
print("Bob said,\"Where are you going?\", to Tamara.")

# Another way to fix this - Python lets you specify strings with single quotes.
print('Bob said,"Where are you going?", to Tamara.')

# Printing a table.
print("Name\tAge\tHeight")
print("----\t---\t------")
print("Arup\t???\t5'7\"")
print("Carolyn\t26\t5'10\"")
