Q:

python program to print alphabet pattern ‘D’

0

Star pattern 14 : ‘D’ 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 ((row == 0 or row == 6) and (column > 1 and column < 5)) or (column == 5 and row != 0 and row != 6)):  
            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)

Similar questions


need a help?


find thousands of online teachers now