Python Pattern Programs | Printing Stars '*' in 8 Shape Get link Facebook X Pinterest Email Other Apps June 09, 2020 Source code for row in range(7): for col in range(5): if ((row==0 or row==3 or row==6) and (col>0 and col<4)) or ((col==0 or col==4) and (row>0 and row<6) and row!=3): print("*",end=" ") else: print(end=" ") print() Get link Facebook X Pinterest Email Other Apps Comments
Python Pattern Programs | Printing Stars '*' in A Shape June 11, 2020 Source code for row in range (7): for col in range(5): if ((col==0 or col==4) and row!=0) or ((row==0 or row==3) and (col>0 and col<4)): print("*",end=" ") else: print(end=" ") print() Read more
Comments
Post a Comment