star question in pyton
*
* *
* * *
* * * *
* * * * *
star question in pyton
*
* *
* * *
* * * *
* * * * *
star question in pyton
# Python 3.x code to demonstrate star pattern
# Function to demonstrate printing pattern
def pypart2(n):
# number of spaces
k = 2*n - 2
# outer loop to handle number of rows
for i in range(0, n):
# inner loop to handle number spaces
# values changing acc. to requirement
for j in range(0, k):
print(end=" ")
# decrementing k after each loop
k = k - 2
# inner loop to handle number of columns
# values changing acc. to outer loop
for j in range(0, i+1):
# printing stars
print("* ", end="")
# ending line after each row
print("r")
# Driver Code
n = 5
pypart2(n)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us