TORONTO KIDS COMPUTER CLUB | PMCA Friday 19:00 Python Homework 21.01.15.
18944
post-template-default,single,single-post,postid-18944,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Friday 19:00 Python Homework 21.01.15.

20 Jan PMCA Friday 19:00 Python Homework 21.01.15.

Question:
“Peter Pan frames” are a way of decorating text in which every character is framed by a diamond-shaped frame, with frames of neighboring characters interleaving. A Peter Pan frame for one letter looks like this (X is the letter we are framing):

..#..
.#.#.
#.X.#
.#.#.
..#..

However, such a framing would be somewhat dull so we’ll frame every third letter using a “Wendy frame”. A Wendy frame looks like this:

..*..
.*.*.
*.X.*
.*.*.
..*..

When a Wendy frame interleaves with a Peter Pan frame, the Wendy frame (being much nicer) is put on top. For an example of the interleaving check the sample cases.

Input Specification
The first and only line of input will contain at most 15 capital letters of the English alphabet.

Output Specification
Output the word written using Peter Pan and Wendy frames on 5 lines.

Sample Input 1
A

Sample Output 1
..#..
.#.#.
#.A.#
.#.#.
..#..

Sample Input 2
DOG

Sample Output 2
..#...#...*..
.#.#.#.#.*.*.
#.D.#.O.*.G.*
.#.#.#.#.*.*.
..#...#...*..

Sample Input 3
ABCD

Sample Output 3
..#...#...*...#..
.#.#.#.#.*.*.#.#.
#.A.#.B.*.C.*.D.#
.#.#.#.#.*.*.#.#.
..#...#...*...#..

No Comments

Sorry, the comment form is closed at this time.