In this example we print a pyramid star pattern in python Code rows = int(input(“Enter amount of rows = “)) print(“Pattern”) for i in range(0, rows): for j in range(0, …
Category:
Patterns
-
In this article we display a sandglass pattern using python Code rows = int(input(“Enter amount of Rows = “)) print(“====Pattern====”) for i in range(0, rows): for j in range(0, i): …
-
In this article we will draw a simple christmas tree using python Code width = int(input(“Enter Christmas Tree Width = “)) height = int(input(“Enter Christmas Tree Height = “)) space …