In my python program I defined a dictionary.
And assigned big block letters made with # symbols to it.
I need to display letters horizontally like this
# ### ###
# # # # #
##### ### #
# # # # #
# # ### ###
My Code is supposed to take an input and print the big letters corresponding the input if input is abc so output should be like above.
Code
dic ={}
dic['A'] = '''
#
# #
#####
# #
# #'''
dic['B'] = '''
###
# #
###
# #
### '''
dic['C'] = '''
###
#
#
#
###'''
word = input('Input : ').upper()
for i in word :
s = dic[i].split('\n')
print(s[0],end=' ')
print('')
for j in word :
print(s[1],end=' ')
print('')
for k in word :
print(s[2],end=' ')
print('')
for m in word :
print(s[3],end=' ')
print('')
for n in word :
print(s[4],end=' ')