Skip to content

Instantly share code, notes, and snippets.

View ahmedyounes's full-sized avatar
🎯
Focusing

Ahmed Younes ahmedyounes

🎯
Focusing
View GitHub Profile
@ahmedyounes
ahmedyounes / turtleTriangelFlower.py
Last active June 9, 2018 02:37
Triangle of triangles with flower
import turtle
turtle.Screen()
turtle.bgcolor("black")
def draw():
a = turtle.Turtle()
a.shape("turtle")
a.color("green")
a.speed(1000)