Facebook
From Scanty Mosquito, 4 Years ago, written in Python.
This paste is a reply to Untitled from Chunky Mockingjay - go back
Embed
Viewing differences between Untitled and Re: Untitled
def star(count):
    return ['*' * i for i in range(1, count)]

for star in star(9):
    print(star)