Skip to content

Instantly share code, notes, and snippets.

View blaketyro's full-sized avatar
🍥
Prioritizing Progress

Blake blaketyro

🍥
Prioritizing Progress
  • Seattle
  • 23:01 (UTC -07:00)
View GitHub Profile
@blaketyro
blaketyro / userpic.py
Last active February 12, 2023 14:27
Flower Profile Image
# Python Turtle graphics flower - inspired by https://www.artstation.com/artwork/e0mdxw
# Output: https://user-images.githubusercontent.com/121282551/218316870-199223d0-843d-42f2-8934-e37f102a3eb7.png
import turtle as t
s = t.Screen()
s.setup(600, 600)
t.tracer(0)
t.hideturtle()
t.bgcolor('white')