Advertisements
Advertisements
Question
Write a program to print the following pattern:
* * * * * * * * * * * * * |
Solution
Top half`{{:(( ∗, 2 "space", 1 "star")),(( ∗, ∗, ∗, 1"space", 3 "star")), ((∗, ∗, ∗,∗, ∗,0"space",5"star")):}`
Bottom half`{{: (( ∗,∗,∗)), ( ∗):}`
# n = 3 Number of lines from top to middle of diamond shape
n = 3
for i in range (1, n + 1):
# This will print the space
space = (n - i)*" "
# It will print the star
star = (2 * i - 1)*"*"
print(space,star)
# The bottom half will be drawn using this loop
for j in range(n - 1, 0, -1):
space = (n - j)*" "
star = (2 * j - 1)*"*"
print(space, star)
APPEARS IN
RELATED QUESTIONS
What is the purpose of the range() function? Give one example.
Find the output of the following program segment:
for i in range(20,30,2):
print(i)
Find the output of the following program segment:
country = 'INDIA'
for i in country:
print (i)
Write a function to print the table of a given number. The number has to be entered by the user.
Write a program that prints the minimum and maximum of five numbers entered by the user.
Write a program to generate the sequence: –5, 10, –15, 20, –25….. up to n, where n is an integer input by the user.
Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user.
Write a program to print the following pattern:
1 2 1 2 3 2 1 2 3 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5 |
Write a program to print the following pattern:
1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 |
Write a program to print the following pattern:
* * * * * * * * |