Back

Code Challenge: ASCII Art

Difficulty  

divider

Objective

In this challenge, you'll create a simple console program that displays a piece of ASCII-style art. This challenge focuses on practicing basic output formatting using text characters.

Skills to Practice

  • Creating and running a program
  • Displaying Console Output

Tasks

  • Create a new Python program named cc-ascii-art.
  • Using print() functions, display a word or message as simple letter art. Use the sample below to guide your formatting. Note that you will need to call the print() function one time for each row of text.

Sample Output

Sample Output
XXXX XX XX XXXXXX XXXX
XX XX XX XX XX XX XX
XX XX XXXXXX XX XX XX
XX XX XX XX XX XX XX
XXXX XX XX XXXXXX XXXX

Commence Challenge