Facebook
From Crimson Mousedeer, 3 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 78
  1. def star(count_of_star, count_of_tree):
  2.     return ['*' * i for i in range(1, count_of_star+1)] * count_of_tree
  3.  
  4. for star in star(4, 9):
  5.     print(star)
  6.  

Replies to Untitled rss

Title Name Language When
Re: Untitled Reliable Cheetah python 3 Years ago.