initials.py


Below is the syntax highlighted version of initials.py from §1.1 Hello World.


#-----------------------------------------------------------------------
# initials.py
#-----------------------------------------------------------------------

import stdio

# Write large initials to standard output.

stdio.writeln('**        ***    **********      **             *             **')
stdio.writeln('**      ***      **        **     **           ***           ** ')
stdio.writeln('**    ***        **         **     **         ** **         **  ')
stdio.writeln('**  ***          **          **     **       **   **       **   ')
stdio.writeln('*****            **          **      **     **     **     **    ')
stdio.writeln('**  ***          **          **       **   **       **   **     ')
stdio.writeln('**    ***        **         **         ** **         ** **      ')
stdio.writeln('**      ***      **        **           ***           ***       ')
stdio.writeln('**        ***    **********              *             *        ')

#-----------------------------------------------------------------------

# python initials.py
# **        ***    **********      **             *             **
# **      ***      **        **     **           ***           ** 
# **    ***        **         **     **         ** **         **  
# **  ***          **          **     **       **   **       **   
# *****            **          **      **     **     **     **    
# **  ***          **          **       **   **       **   **     
# **    ***        **         **         ** **         ** **      
# **      ***      **        **           ***           ***       
# **        ***    **********              *             *        


Copyright © 2000–2015, Robert Sedgewick, Kevin Wayne, and Robert Dondero.
Last updated: Fri Oct 20 20:45:16 EDT 2017.