Ask Your Question
1

How can asterisks be added during a loop?

asked 2022-11-09 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-05-19 20:00:00 +0000

lakamha gravatar image
  1. Using a for loop:
for i in range(5):
    print('*'*(i+1))

Output:

*
**
***
****
*****
  1. Using a while loop:
i = 1
while i <= 5:
    print('*'*i)
    i += 1

Output:

*
**
***
****
*****
  1. Using nested loops:
for i in range(5):
    for j in range(i+1):
        print('*', end='')
    print()

Output:

*
**
***
****
*****
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-11-09 11:00:00 +0000

Seen: 8 times

Last updated: May 19 '21