Code:
- str="";
- for Row in range(0,7):
- for Col in range(0,7):
- if (((Col == 1 or Col == 5) and (Row > 4 or Row < 2)) or Row == Col and Col > 0 and Col < 6 or (Col == 2 and Row == 4) or (Col == 4 and Row == 2)):
- str=str+"*"
- else:
- str=str+" "
- str=str+"\n"
- print(str);


Sibeesh VenuPosted Nov 2, 2015, 4:44 AM
Nice Share