Write a function ascii_name_plaque (name) which takes as input a string representing the name of a person and draws (using the print function) a plate of the name as shown in the examples given in section 2 below. Remember that you cannot use loops or if / branching statements.
>> ascii_name_plaque("Captain Kara 'Starbuck' Thrace") **** k**** * * _Captain Kara 'Starbuck' Thrace_ * * * ************* *** ******* >>> ascii_name_plaque("Seven of Nine") ***** *** * * _Seven of Nine_ * * ***** **** *** "/>Extracted text: >>> # testing Question 9 >>> >>> ascii_name_plaque("vida") *** ****** * _vida_ * * * ** **** >>> ascii_name_plaque("Captain Kara 'Starbuck' Thrace") **** k**** * * _Captain Kara 'Starbuck' Thrace_ * * * ************* *** ******* >>> ascii_name_plaque("Seven of Nine") ***** *** * * _Seven of Nine_ * * ***** **** ***
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here