quick question. never posted here and don't want to clutter with a new thread, so I figured I'd stick it under here.
I'm starting programming at uni and we are learning python first. I'm doing okay, but I'm stuck on this assignment.
I need to input a user's name
nam = input("What's your name? ") #anon
and then pull those individual characters and turn them into strings and return their name as ascii art.
I have stuff like this for every letter:
z0 = " ZZZZZZZ"
z1 = " Z "
z2 = " Z "
z3 = " Z "
z4 = " Z "
z5 = " ZZZZZZZ"