# bitmap_message.py
# Displays a text message according to the provided bitmap image.
# by: Scott Gordon
import sys
bitmap = '''
....................................................................
************** * *** ** * ******************************
********************* ** ** * * ****************************** *
** ***************** ******************************
************* ** * **** ** ************** *
********* ******* **************** * *
******** *************************** *
* * **** *** *************** ****** ** *
**** * *************** *** *** *
****** ************* ** ** *
******** ************* * ** ***
******** ******** * *** ****
********* ****** * **** ** * **
********* ****** * * *** * *
****** ***** ** ***** *
***** **** * ********
***** **** *********
**** ** ******* *
*** * *
** * *
....................................................................
'''
print('***** Bitmap Message *****')
print('Enter the message to display with the bitmap.')
message = input('> ')
if message == '':
sys.exit()
for line in bitmap.splitlines():
for i, bit in enumerate(line):
if bit == ' ':
print(' ', end='')
else:
print(message[i % len(message)], end='')
print()
Photo by Marjan Blan | @marjanblan on Unsplash
Top comments (0)