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