Q:

python program to print alphabet pattern ‘M’

0

Star pattern 18 : ‘M’ Pattern in Python

  *       *                                                                                                   
  *       *                                                                                                   
  * *   * *                                                                                                   
  *   *   *                                                                                                   
  *       *                                                                                                   
  *       *                                                                                                   
                                                                                            

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

result_str="";    
for row in range(0,7):    
    for column in range(0,7):     
        if (column == 1 or column == 5 or (row == 2 and (column == 2 or column == 4)) or (row == 3 and column == 3)):  
            result_str=result_str+"* "    
        else:      
            result_str=result_str+"  "    
    result_str=result_str+"\n"    
print(result_str);

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

python program to print alphabet pattern ‘O’... >>
<< python program to print alphabet pattern ‘L’...