Alphabet Pattern 'Y' in Python

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

 
 
Next Recommended Reading Alphabet Pattern &#39;H&#39; in Python