H Style In Python

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