Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Python 1:

Printing stars:

num = int(input("enter number"))
for i in range(1,num+1):
  for j in range(1,i+1):
    print("*",  end=" ")



This post first appeared on AR Programming, please read the originial post: here

Share the post

Python 1:

×

Subscribe to Ar Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×