Advertisement
xgeovanni

mehthing

Jan 14th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. x = "*"
  2.  
  3. for i in range(4):
  4.     spaces = " " * int(((7 - len(x)) / 2))
  5.     print("{0}{1}{2}".format(spaces, x, spaces))
  6.     x += "**"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement