I am trying a problem to make Graphical designs in Python, more specifically ASCII "banner" words. Each letter is made up of a nested list of lines of the character.
[[' _______ ', '( )', '| () () |', '| || || |', '| |(_)| |', '| | | |', '| ) ( |', '|/ \\|'], [' _______ ', '( ____ \\', '| ( \\/', '| (__ ', '| __) ', '| ( ', '| (____/\\', '(_______/']]
etc.
When printed down for each nested list and across for the whole thing, they make a word. I am having trouble printing it as I said above, down for each nested list and across for the whole thing. Thanks in advance!