Superman Logo (Due 09 Sep 2013)

You will write a program that will print the Superman Logo exactly as given below. The logo will be preceded by one empty line on the top and there will also be one empty line at the bottom. The logo will start 5 spaces from the left margin.

     
         *****************
        ***$$$$$$$$$$$$$$**
       ** $$         $$ $ **
      ** $$           $$$  **
     ** $$$                 **
      *$$$$$$$$$           **
       *$$$$$$$$$$$$$$    **
        **$$$$$$$$$$$$$$$**
         **      $$$$$$$**
          **         $$**
           **$$$    $$**
            *$$$$$$$$**
             **     **
              **   **
               ** **
                ***
                 *
     

The program that you will be writing will be called Logo.py. Run your program on the command line. The file will have a header whose format is given below. The header must precede any Python code that you write.


#  File: Logo.py

#  Description:

#  Student Name:

#  Student UT EID:

#  Course Name: CS 303E

#  Unique Number: 

#  Date Created:

#  Date Last Modified:

############################################################################

def main ():
  # YOUR PYTHON CODE HERE


main()

You have to have a CS account to use the turnin system. Use the link below to create one:

https://apps.cs.utexas.edu/udb/newaccount/

Do remember your CS username and CS password that you created. You must use that on the CS turnin system. To protect your privacy neither I nor my TAs have access to your account. If you forget your password you can change your password at

https://apps.cs.utexas.edu/udb/passwd/

If you still are having problems with your account, you can e-mail udb@cs.utexas.edu and copy me on that e-mail.

Use the turnin program to submit your Logo.py file. The proctors should receive your work by 11 PM on Monday, 09 Sep 2013. There will be substantial penalties if you do not adhere to the guidelines.