diff --git a/betty.txt b/betty.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7a18f5d3d5d61b063cc5bede67cb0ec0979d30 --- /dev/null +++ b/betty.txt @@ -0,0 +1 @@ +Happy New Year!!! diff --git a/circle.py b/circle.py new file mode 100644 index 0000000000000000000000000000000000000000..d6ff47ce7302a4333a1cb5b44ef3a453b309aa3f --- /dev/null +++ b/circle.py @@ -0,0 +1,14 @@ +import turtle +import random +t = turtle.Turtle() +t.speed(0) + +for i in range(100): + t.penup() + t.setposition(random.randint(-400, 400), random.randint(-400, 400)) + t.fillcolor(random.uniform(0, 1), random.uniform(0, 1), random.uniform(0, 1)) + t.begin_fill() + t.circle(random.uniform(5, 60)) + t.end_fill() + +turtle.done()