File: banner.py
Date: 12/6/15
Purpose: To write a program that prints a sideways banner.
The characters A-Z and .,!?& are in a file in a seven line by whatever
width necessary. Each text is separated by a blank from the next letter Ex.) ###
## ##
## ##
## ##
#########
## ##
## ##
# so the letter A has to be flipped and produced horizontally.
# so if "yum" was entered as a phrase, it would print "yum" sideways
def main():
print("Program to print a sideways banner.")
print("The letters and specials are in a file")
print("You will be asked to enter the name of a file.")
print("Written by John Doe")
fileName = input(Enter the name of a file: ")
print()
phrase = ("Enter phrase to print: ")