Yasmin Shaik n=int(input(“enter a number of rows”)) For i in range(5): Print(“*”) i=i+1 Log in to Reply
Raghvendra Singh Shekhawat rows = int(input(“Enter the number of rows: “)) for i in range(rows): for j in range(rows): print(“*”, end=” “) print() Log in to Reply
tondalevishal143 n=int(input()) # enter the number for i in range(n): for j in range(n): print(‘*’,end=’ ‘) print() Log in to Reply
46_Ranjan row=4 for i in range(1,row+1): for j in range(1,row+1): print(“*”, end=” “) print() Log in to Reply
Lohith # Python Program to Print Square Star Pattern side = int(input(“Please Enter any Side of a Square : “)) print(“Square Star Pattern”) for i in range(side): for i in range(side): print(‘*’, end = ‘ ‘) print() Log in to Reply
akashsahuak6264167089 n=int(input(“Enter the number of rows:)) for i in range(1,n+1): print(“*”*n) Log in to Reply
n=int(input(“enter a number of rows”))
For i in range(5):
Print(“*”)
i=i+1
for i in range(4):
print(“* “*4)
rows = int(input(“Enter the number of rows: “))
for i in range(rows):
for j in range(rows):
print(“*”, end=” “)
print()
n=int(input())
i=1
while i<n:
print("*"*5)
i+=1
for i in range(4):
for j in range(4):
print(“*”,end=””)
print()
n=int(input()) # enter the number
for i in range(n):
for j in range(n):
print(‘*’,end=’ ‘)
print()
for i in range(4):
for j in range(3):
print(“*”,end=””)
print()
row=4
for i in range(1,row+1):
for j in range(1,row+1):
print(“*”, end=” “)
print()
# Python Program to Print Square Star Pattern
side = int(input(“Please Enter any Side of a Square : “))
print(“Square Star Pattern”)
for i in range(side):
for i in range(side):
print(‘*’, end = ‘ ‘)
print()
n =int(input())
for i in range(n):
print(n*’*’)
n=int(input(“Enter the number of rows:))
for i in range(1,n+1):
print(“*”*n)
x = int(input(“enter:”))
for i in range(x):
print(“*”*x)