Let's Talk About The A Style In Python

Introduction

 
In this blog, I am going to explain about the A style in Python. It will be displayed in the Run module.
 
Software Requirement
 
Python 3.5.2 or above
 
Simple Programming
  1. str="";      
  2. for Row in range(0,7):      
  3.     for Col in range(0,7):       
  4.         if (((Col == 1 or Col == 5) and Row != 0) or ((Row == 0 or Row == 3) and (Col > 1 and Col < 5))):      
  5.             str=str+"*"      
  6.         else:        
  7.             str=str+" "      
  8.     str=str+"\n"      
  9. print(str);   
Explanation
 
In this blog, I will display the A style design in the Run module.
 
Output
 
===== RESTART: C:/Users/admn/AppData/Local/Programs/Python/Python35/A.py =====
*    *   *
*         *
*         *
*  ** *  *
*          *
*          *
*          *