Skip to content

Instantly share code, notes, and snippets.

@ryanwoodsmall
Created August 27, 2021 07:05
Show Gist options
  • Save ryanwoodsmall/cc19748035a152489babafb34ad8c1b5 to your computer and use it in GitHub Desktop.
Save ryanwoodsmall/cc19748035a152489babafb34ad8c1b5 to your computer and use it in GitHub Desktop.
sierpinksi.py
# via: https://blog.pimaker.at/texts/rvc1/
def s(n):
d=["*"]
for i in range(n):
sp=" "*(2**i)
d=[sp+x+sp for x in d] + [x+" "+x for x in d]
return d
print("\n".join(s(4)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment