Facebook
From Scanty Mosquito, 4 Years ago, written in Python.
This paste is a reply to Untitled from Chunky Mockingjay - view diff
Embed
Download Paste or View Raw
Hits: 111
  1. def star(count):
  2.     return ['*' * i for i in range(1, count)]
  3.  
  4. for star in star(9):
  5.     print(star)
  6.