A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

python program to print alphabet pattern ‘X’
Q:

python program to print alphabet pattern ‘X’

-4

Star pattern 21 : ‘X’ 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) and (row > 4 or row < 2)) or row == column and column > 0 and column < 6 or (column == 2 and row == 4) or (column == 4 and row == 2)):  
            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