Ace of Hearts
Lesson 3 of 6 in Coddy's Playing Cards Generator (Text Based) course.
Challenge
EasyMake 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)
1Introduction
Introduction