python Programming and Technical Programming Arrays

Accept three strings of the same size, print them in alphabet H pattern as given in the Example Input/Output section.

Input Format: The first three lines contain three strings.

Output Format: The program must print the strings in alphabet H pattern.

Boundary Condition: 3 <= Length of the strings <= 100
Example Input/Output 1:
Input: BRIDGE DRAGON TRANCE
Output:
B++++T
R++++R
I++++A
DRAGON
G++++C
E++++E

Example Input/Output 2:
Input: lemon grant apple
Output:
a+++g
p+++r
p+++a
lemon
e+++t

Read Solution (Total 0)

python Other Question