Skip to content

Latest commit

 

History

History
30 lines (15 loc) · 1.08 KB

File metadata and controls

30 lines (15 loc) · 1.08 KB

Block Letters ASCII art is a graphic design technique that uses computers for presentation and consists of pictures pieced together from individual characters.

Write two Python programs called initials.py and fruit.py that displays the initials of your name in block letters as shown and dip your toes into ASCII art and the shape of a fruit.

Indications:

Copy the next link, and paste in google:

https://content.codecademy.com/courses/learn-cpp/hello-world/block-letters-hint.png?_gl=1*1t040va*_ga*OTYwMjc4MjkxNy4xNjU1ODQxODEy*_ga_3LRZM6TM9L*MTY2MTE0NzUyNS4xNC4xLjE2NjExNDc2MzguMTUuMC4w

Optional ---> You can work on jupyter notebook or with a python script.

You need to follow this steps:

1- Take a look at the complete alphabet and find your initials. Notice how each block letter is 7x5 and formed by the letter itself.

2- First, write two comments with: - Your first name and last name. - Your favorite fruit.

3- Output your initials as a block letter. There are a few ways to do this!

4- Output your favorite fruit as the block letter below.

GOOD LUCK!