Introduction
In this blog, I am going to explain about the F style in Python. It will be displayed in the Run module.
Software Requirement
Python 3.5.2
Simple programming
- str="";
- for Row in range(0,7):
- for Col in range(0,7):
- if (Col == 1 or ((Row == 0 or Row == 6) and (Col > 2 and Col < 7)) or (Row == 3 and Col > 1 and Col < 5)):
- str=str+"*"
- else:
- str=str+" "
- str=str+"\n"
- print(str);