# Arup Guha
# 6/5/2023
# Examples using the print function

print("Hello World!")

# By default a future print appears on the next line.
print("I played volleyball in college.")

# Showing how end works.
print("This will be a run-on sentence", end = "")
print("so here we go", end = " :) ")
print("and so on.")

# If you want to print single or double quotes.
print('He said,"Who is going to the beach?"')

# What happens when I try to do this with double quotes.
print("He said,\"Who is going to the beach?\"")

# Escape sequence for a new line.
print("1\n2\n3\n4\n5\n")

# Escape sequence for a tab.
print("This\tis\ta\ttab.")



