Menu
Coddy logo textTech

Ace of Hearts

Lesson 3 of 6 in Coddy's Playing Cards Generator (Text Based) course.

challenge icon

Challenge

Easy

Make the function printCard print the Ace of Hearts.

Here is the Heart symbol for use -

Check the expected output to understand the correct output!

Try it yourself

def printCard():
    print('╔═════════╗')
    print('║         ║')
    print('║         ║')
    print('║         ║')
    print('║         ║')
    print('║         ║')
    print('║         ║')
    print('║         ║')
    print('╚═════════╝')

All lessons in Playing Cards Generator (Text Based)