Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def stars(character, max_int):
- i = 1
- space = max_int
- while i < max_int:
- print (space * " ") + i * character
- i = i + 1
- space = space -1
- while i > 0:
- print (space * " ") + i * character
- i = i -1
- space = space + 1
Advertisement
Add Comment
Please, Sign In to add comment