How to print star pattern in python
Jun 2, 2022
Today we discuss How to print star pattern in python the previous we discuss the Top 25 data science interview questions and answers
Square Pattern in Python
# Square pattern program
# Create a list of rows
for i in range(0, 5):
# Create a list of columns
for j in range(0, 5):
print("*", end="")
print()