Square Patterns in python
View All Python Programs Square Pattern Type-1 (Source Code) for x in range(1,5): for y in range(1,5): print(“*”,end=” “) print(“”) Output * * * * * * * * * * * * * * * * Square Pattern Type-2 (Source Code) for x in range(1,5): for y in range(1,5): […]
Square Patterns in python Read More »