├── Design ├── design 1 ├── design 1.jpg ├── design 2 └── design 2.jpg └── Images ├── Lord Ganesh ├── Lord Ganesh.py ├── l └── lord ganesh.jpg └── RadhaKrishna ├── radhakrishn.jpg └── radhakrishn.py /Design/design 1: -------------------------------------------------------------------------------- 1 | import turtle 2 | t=turtle.Turtle() 3 | s=turtle.Screen() 4 | s.bgcolor('#262626') 5 | t.pencolor('#7C909C') 6 | t.speed(100) 7 | 8 | col=('#ED7864','#6E544F','#592F2F','#6E383E') 9 | 10 | for n in range(5): 11 | for x in range(8): 12 | t.speed(x+10) 13 | for i in range(2): 14 | t.pensize(2) 15 | t.circle(80+n*20,90) 16 | t.lt(90) 17 | t.lt(45) 18 | t.pencolor(col[n%4]) 19 | s.exitonclick() 20 | 21 | #VAIBHAV PISE 22 | -------------------------------------------------------------------------------- /Design/design 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaIbHaVPiSe/Design-Using-Turtle-Library-in-python/fef848463817a14b6179c341699222f753ab4d09/Design/design 1.jpg -------------------------------------------------------------------------------- /Design/design 2: -------------------------------------------------------------------------------- 1 | import turtle 2 | turtle.setup(width=600, height=500) 3 | turtle.reset() 4 | turtle.hideturtle() 5 | turtle.speed(0) 6 | 7 | turtle.bgcolor('white') 8 | 9 | c = 0 10 | x = 0 11 | 12 | colors = [ 13 | #reddish colors 14 | (1.00, 0.00, 0.00),(1.00, 0.03, 0.00),(1.00, 0.05, 0.00),(1.00, 0.07, 0.00),(1.00, 0.10, 0.00),(1.00, 0.12, 0.00),(1.00, 0.15, 0.00),(1.00, 0.17, 0.00),(1.00, 0.20, 0.00),(1.00, 0.23, 0.00),(1.00, 0.25, 0.00),(1.00, 0.28, 0.00),(1.00, 0.30, 0.00),(1.00, 0.33, 0.00),(1.00, 0.35, 0.00),(1.00, 0.38, 0.00),(1.00, 0.40, 0.00),(1.00, 0.42, 0.00),(1.00, 0.45, 0.00),(1.00, 0.47, 0.00), 15 | #orangey colors 16 | (1.00, 0.50, 0.00),(1.00, 0.53, 0.00),(1.00, 0.55, 0.00),(1.00, 0.57, 0.00),(1.00, 0.60, 0.00),(1.00, 0.62, 0.00),(1.00, 0.65, 0.00),(1.00, 0.68, 0.00),(1.00, 0.70, 0.00),(1.00, 0.72, 0.00),(1.00, 0.75, 0.00),(1.00, 0.78, 0.00),(1.00, 0.80, 0.00),(1.00, 0.82, 0.00),(1.00, 0.85, 0.00),(1.00, 0.88, 0.00),(1.00, 0.90, 0.00),(1.00, 0.93, 0.00),(1.00, 0.95, 0.00),(1.00, 0.97, 0.00), 17 | #yellowy colors 18 | (1.00, 1.00, 0.00),(0.95, 1.00, 0.00),(0.90, 1.00, 0.00),(0.85, 1.00, 0.00),(0.80, 1.00, 0.00),(0.75, 1.00, 0.00),(0.70, 1.00, 0.00),(0.65, 1.00, 0.00),(0.60, 1.00, 0.00),(0.55, 1.00, 0.00),(0.50, 1.00, 0.00),(0.45, 1.00, 0.00),(0.40, 1.00, 0.00),(0.35, 1.00, 0.00),(0.30, 1.00, 0.00),(0.25, 1.00, 0.00),(0.20, 1.00, 0.00),(0.15, 1.00, 0.00),(0.10, 1.00, 0.00),(0.05, 1.00, 0.00), 19 | #greenish colors 20 | (0.00, 1.00, 0.00),(0.00, 0.95, 0.05),(0.00, 0.90, 0.10),(0.00, 0.85, 0.15),(0.00, 0.80, 0.20),(0.00, 0.75, 0.25),(0.00, 0.70, 0.30),(0.00, 0.65, 0.35),(0.00, 0.60, 0.40),(0.00, 0.55, 0.45),(0.00, 0.50, 0.50),(0.00, 0.45, 0.55),(0.00, 0.40, 0.60),(0.00, 0.35, 0.65),(0.00, 0.30, 0.70),(0.00, 0.25, 0.75),(0.00, 0.20, 0.80),(0.00, 0.15, 0.85),(0.00, 0.10, 0.90),(0.00, 0.05, 0.95), 21 | #blueish colors 22 | (0.00, 0.00, 1.00),(0.05, 0.00, 1.00),(0.10, 0.00, 1.00),(0.15, 0.00, 1.00),(0.20, 0.00, 1.00),(0.25, 0.00, 1.00),(0.30, 0.00, 1.00),(0.35, 0.00, 1.00),(0.40, 0.00, 1.00),(0.45, 0.00, 1.00),(0.50, 0.00, 1.00),(0.55, 0.00, 1.00),(0.60, 0.00, 1.00),(0.65, 0.00, 1.00),(0.70, 0.00, 1.00),(0.75, 0.00, 1.00),(0.80, 0.00, 1.00),(0.85, 0.00, 1.00),(0.90, 0.00, 1.00),(0.95, 0.00, 1.00) 23 | ] 24 | 25 | while x < 1000: 26 | idx = int(c) 27 | color = colors[idx] 28 | turtle.color(color) 29 | turtle.forward(x) 30 | turtle.right(98) 31 | x = x + 1 32 | c = c + 0.1 33 | 34 | turtle.exitonclick() 35 | 36 | #VAIBHAV PISE 37 | -------------------------------------------------------------------------------- /Design/design 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaIbHaVPiSe/Design-Using-Turtle-Library-in-python/fef848463817a14b6179c341699222f753ab4d09/Design/design 2.jpg -------------------------------------------------------------------------------- /Images/Lord Ganesh/Lord Ganesh.py: -------------------------------------------------------------------------------- 1 | from turtle import * 2 | import turtle as tur 3 | import random 4 | import time 5 | 6 | t=tur.Turtle() 7 | tur.title("Vaibhav") 8 | tur.speed(10) 9 | 10 | tur.bgcolor("black") 11 | tur.color("red") 12 | tur.pensize(5) 13 | 14 | tur.left(60) 15 | tur.fd(50) 16 | tur.left(15) 17 | tur.circle(100,90) 18 | tur.fd(30) 19 | tur .pensize(10) 20 | tur.penup() 21 | tur.right(90) 22 | tur.fd(20) 23 | tur.pendown() 24 | 25 | tur.right(40) 26 | tur.circle(-50,90) 27 | tur.fd(20) 28 | tur.left(150) 29 | 30 | #seconde head curve 31 | tur.color("red") 32 | tur.penup() 33 | tur.fd(40) 34 | tur.left(20) 35 | tur.pendown() 36 | tur.circle(50,90) 37 | 38 | #third head curve 39 | 40 | #goto beginning 41 | tur.color("red") 42 | tur.penup() 43 | goto(0,0) 44 | tur.pensize(5) 45 | tur.pendown() 46 | tur.left(30) 47 | tur.fd(120) 48 | tur.circle(60,270) 49 | 50 | #eyes 51 | tur.color("silver") 52 | tur.penup() 53 | tur.forward(30) 54 | tur.right(50) 55 | tur.forward(135) 56 | tur.pendown() 57 | tur.pensize(8) 58 | tur.circle(50,90) 59 | tur.left(95) 60 | tur.penup() 61 | tur.circle(60,75) 62 | 63 | #eyebrows 64 | tur.penup() 65 | tur.forward(15) 66 | tur.left(90) 67 | tur.pensize(2) 68 | tur.pendown() 69 | tur.circle(70,90) 70 | 71 | #ears 72 | tur.pensize(5) 73 | tur.penup() 74 | tur.forward(75) 75 | tur.right(90) 76 | tur.forward(20) 77 | tur.pendown() 78 | tur.circle(90,90) 79 | tur.forward(20) 80 | 81 | tur.circle(30,170) 82 | tur.right(180) 83 | tur.circle(28,180) 84 | tur.right(160) 85 | tur.circle(25,180) 86 | tur.right(160) 87 | tur.circle(22,160) 88 | tur.forward(20) 89 | tur.circle(60,45) 90 | 91 | 92 | #trunk 93 | 94 | tur.penup() 95 | goto(0,0) 96 | tur.left(130) 97 | tur.fd(140) 98 | tur.right(250) 99 | tur.backward(20) 100 | tur.circle(80,20) 101 | tur.circle(20,40) 102 | 103 | tur.right(110) 104 | tur.penup() 105 | tur.fd(20) 106 | tur.pendown() 107 | tur.pensize(10) 108 | tur.forward(50) 109 | tur.circle(100,80) 110 | tur.pensize(9) 111 | tur.circle(150,50) 112 | tur.pensize(7) 113 | tur.circle(100,60) 114 | tur.pensize(5) 115 | tur.circle(90,60) 116 | tur.pensize(4) 117 | tur.circle(40,60) 118 | tur.circle(10,90) 119 | 120 | 121 | #head 122 | tur.color("red") 123 | tur.penup() 124 | 125 | goto(0,0) 126 | 127 | goto(-90,290) 128 | tur.right(230) 129 | tur.pendown() 130 | 131 | tur.circle(-100,50) 132 | tur.circle(200,20) 133 | tur.circle(50,30) 134 | 135 | tur.right(180) 136 | 137 | tur.circle(50,30) 138 | tur.circle(200,20) 139 | tur.circle(-100,40) 140 | tur.right(95) 141 | tur.penup() 142 | tur.fd(40) 143 | tur.right(90) 144 | tur.pendown() 145 | tur.circle(100,40) 146 | tur.penup() 147 | tur.circle(35,120) 148 | tur.right(30) 149 | tur.pendown() 150 | tur.pensize(1) 151 | tur.circle(60,50) 152 | 153 | #done 154 | tur.penup() 155 | 156 | goto(-70,90) 157 | 158 | tur.fillcolor("red") 159 | tur.begin_fill() 160 | tur.circle(20,180) 161 | tur.end_fill() 162 | 163 | tur.penup() 164 | tur.left(75) 165 | tur.fillcolor("red") 166 | tur.begin_fill() 167 | tur.circle(70,35) 168 | tur.end_fill() 169 | 170 | tur.left(180) 171 | tur.backward(10) 172 | tur.pendown() 173 | tur.left(6) 174 | tur.pensize(5) 175 | tur.color("red") 176 | tur.circle(-80,40) 177 | tur.penup() 178 | 179 | goto(0,0) 180 | 181 | 182 | 183 | #borderrrr 184 | tur.write(" ",font=("sans",20,"normal"),align="left") 185 | goto(0,-20) 186 | tur.write(" ",font=("sans",20,"normal"),align="left") 187 | 188 | tur.color("orange") 189 | goto(-240,420) 190 | tur.right(90) 191 | tur.pendown() 192 | tur.fillcolor("orange") 193 | tur.begin_fill() 194 | tur.forward(275) 195 | tur.right(130) 196 | tur.forward(100) 197 | tur.end_fill() 198 | 199 | tur.penup() 200 | goto(0,420) 201 | tur.right(90) 202 | 203 | tur.color("orange") 204 | tur.fillcolor("orange") 205 | tur.begin_fill() 206 | tur.fd(100) 207 | tur.right(50) 208 | tur.pendown() 209 | tur.fd(510) 210 | tur.left(90) 211 | tur.right(165) 212 | tur.end_fill() 213 | 214 | tur.color("orange") 215 | tur.fillcolor("orange") 216 | tur.begin_fill() 217 | tur.fd(540) 218 | tur.right(70) 219 | tur.fd(20) 220 | tur.end_fill() 221 | 222 | tur.color("orange") 223 | tur.fillcolor("orange") 224 | tur.begin_fill() 225 | tur.fd(540) 226 | tur.right(90) 227 | tur.fd(20) 228 | tur.end_fill() 229 | 230 | 231 | tur.left(30) 232 | tur.color("orange") 233 | tur.fillcolor("") 234 | tur.begin_fill() 235 | tur.fd(205) 236 | tur.right(90) 237 | tur.fd(20) 238 | tur.end_fill() 239 | 240 | 241 | tur.color("red") 242 | tur.penup() 243 | goto(0,0) 244 | tur.left(118) 245 | tur.fd(240) 246 | tur.right(30) 247 | tur.pendown() 248 | tur.circle(90,65) 249 | tur.penup() 250 | done() -------------------------------------------------------------------------------- /Images/Lord Ganesh/l: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Images/Lord Ganesh/lord ganesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaIbHaVPiSe/Design-Using-Turtle-Library-in-python/fef848463817a14b6179c341699222f753ab4d09/Images/Lord Ganesh/lord ganesh.jpg -------------------------------------------------------------------------------- /Images/RadhaKrishna/radhakrishn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaIbHaVPiSe/Design-Using-Turtle-Library-in-python/fef848463817a14b6179c341699222f753ab4d09/Images/RadhaKrishna/radhakrishn.jpg -------------------------------------------------------------------------------- /Images/RadhaKrishna/radhakrishn.py: -------------------------------------------------------------------------------- 1 | import turtle 2 | 3 | wn=turtle.Screen() 4 | wn.setup(768,768) 5 | wn.title("vaibhav") 6 | wn.bgcolor("#FFD39B") 7 | 8 | 9 | #Radha 10 | b=turtle.Turtle() 11 | 12 | b.up() 13 | b.speed(0) 14 | b.seth(0) 15 | b.fd(22) 16 | b.seth(90) 17 | b.fd(103) 18 | 19 | b.pensize(5) 20 | b.down() 21 | #1 eye1 1 22 | 23 | b.color("#000000") 24 | b.seth(10) 25 | b.circle(-50,25) 26 | b.pensize(4) 27 | b.circle(-50,10) 28 | b.pensize(3) 29 | b.circle(-50,5) 30 | b.pensize(2) 31 | b.circle(-50,3) 32 | 33 | b.up() 34 | b.seth(180) 35 | b.fd(35) 36 | b.seth(-90) 37 | b.fd(14) 38 | b.down() 39 | #1 eye1 2 40 | b.color("#000000") 41 | b.seth(-46) 42 | b.fd(5) 43 | b.pensize(3) 44 | b.fd(10) 45 | b.pensize(4) 46 | b.fd(4) 47 | b.pensize(5) 48 | b.circle(25,62) 49 | b.pensize(4) 50 | b.seth(-48) 51 | b.fd(3) 52 | b.pensize(3) 53 | b.fd(4) 54 | b.pensize(2) 55 | b.fd(3) 56 | 57 | b.up() 58 | b.seth(45) 59 | b.fd(63) 60 | b.down() 61 | #1 eye2 1 62 | b.color("#000000") 63 | b.circle(-100,3) 64 | b.pensize(3) 65 | b.circle(-100,8) 66 | b.pensize(4) 67 | b.circle(-100,9) 68 | b.pensize(5) 69 | b.circle(-100,13) 70 | b.pensize(4) 71 | b.circle(-100,8) 72 | b.pensize(3) 73 | b.circle(-100,6) 74 | b.pensize(2) 75 | b.circle(-100,3) 76 | 77 | b.up() 78 | b.seth(-139) 79 | b.fd(103) 80 | b.down() 81 | #1 eye2 2 82 | b.color("#000000") 83 | b.seth(46) 84 | b.fd(4) 85 | b.pensize(3) 86 | b.fd(6) 87 | b.pensize(4) 88 | b.fd(6) 89 | b.seth(-5) 90 | b.circle(115,5) 91 | b.pensize(5) 92 | b.circle(115,10) 93 | b.pensize(6) 94 | b.circle(115,15) 95 | b.pensize(5) 96 | b.circle(115,10) 97 | b.pensize(4) 98 | b.circle(115,5) 99 | b.pensize(3) 100 | b.circle(115,5) 101 | b.pensize(2) 102 | b.circle(115,5) 103 | 104 | 105 | b.up() 106 | b.seth(176) 107 | b.fd(142) 108 | b.down() 109 | #2 pottu 110 | b.color('#EE3B3B') 111 | b.pensize(7) 112 | b.circle(2) 113 | 114 | b.pensize(4) 115 | b.up() 116 | b.seth(-94) 117 | b.fd(118) 118 | b.down() 119 | #3 nose 120 | b.color('#FFE4C4') 121 | b.seth(-125) 122 | b.circle(15,85) 123 | b.fd(10) 124 | 125 | b.pensize(3) 126 | b.up() 127 | b.seth(-115) 128 | b.fd(22) 129 | b.down() 130 | #3 mouth 131 | b.color('#EE3B3B') 132 | b.seth(28) 133 | b.fd(15) 134 | b.circle(-9,85) 135 | b.seth(75) 136 | b.circle(-9,83) 137 | b.circle(40,48) 138 | b.seth(-131) 139 | b.circle(-65,62) 140 | #b.pensize(3) 141 | b.up() 142 | b.seth(-70) 143 | b.fd(6) 144 | b.down() 145 | b.seth(-34) 146 | b.circle(35,80) 147 | 148 | 149 | b.pensize(2) 150 | b.up() 151 | b.seth(150) 152 | b.fd(99) 153 | b.down() 154 | #3 face 155 | b.color('#FFE4C4') 156 | b.seth(-67) 157 | b.fd(10) 158 | b.pensize(3) 159 | b.fd(40) 160 | b.circle(122,36) 161 | b.seth(0) 162 | b.fd(27) 163 | b.seth(27) 164 | b.circle(220,40) 165 | b.pensize(2) 166 | b.circle(220,5) 167 | 168 | b.pensize(3) 169 | b.up() 170 | b.seth(-60) 171 | b.fd(10) 172 | b.down() 173 | #3 hear1 174 | b.color("#FFD700") 175 | b.seth(-90) 176 | b.fd(32) 177 | b.seth(0) 178 | b.circle(-25,160) 179 | b.pensize(4) 180 | b.circle(-25,100) 181 | b.pensize(5) 182 | b.circle(-25,50) 183 | b.pensize(4) 184 | b.circle(-25,35) 185 | b.pensize(3) 186 | b.circle(-25,15) 187 | 188 | b.pensize(3) 189 | b.up() 190 | b.seth(-10) 191 | b.fd(40) 192 | b.down() 193 | #3 hear2 194 | b.color("#FFD700") 195 | b.seth(-90) 196 | b.fd(14) 197 | b.seth(0) 198 | b.circle(-10,160) 199 | b.pensize(4) 200 | b.circle(-10,100) 201 | b.pensize(5) 202 | b.circle(-10,50) 203 | b.pensize(4) 204 | b.circle(-10,35) 205 | b.pensize(3) 206 | b.circle(-10,15) 207 | 208 | 209 | b.pensize(4) 210 | b.up() 211 | b.seth(147) 212 | b.fd(315) 213 | b.down() 214 | #3 hair1 215 | b.color("#76EE00") 216 | b.seth(90) 217 | b.circle(-120,5) 218 | b.pensize(3) 219 | b.circle(-120,40) 220 | b.pensize(3) 221 | b.circle(-45,50) 222 | b.pensize(4) 223 | b.circle(-45,42) 224 | b.fd(70) 225 | b.seth(-38) 226 | b.fd(50) 227 | b.pensize(5) 228 | b.circle(-75,44) 229 | b.fd(50) 230 | b.circle(70,48) 231 | b.seth(-5) 232 | b.pensize(4) 233 | b.fd(20) 234 | b.circle(-7,82) 235 | b.pensize(3) 236 | b.fd(25) 237 | b.circle(-60,33) 238 | b.pensize(2) 239 | b.circle(-60,10) 240 | 241 | 242 | b.pensize(1) 243 | b.up() 244 | b.seth(-90) 245 | b.fd(15) 246 | b.seth(-179) 247 | b.fd(212) 248 | b.down() 249 | #3 hair2 250 | b.color("#76EE00") 251 | b.pensize(7) 252 | b.seth(80) 253 | b.circle(30,51) 254 | b.pensize(4) 255 | b.fd(18) 256 | b.pensize(7) 257 | b.seth(150) 258 | b.circle(-50,37) 259 | b.pensize(6) 260 | b.circle(-250,13) 261 | b.pensize(5) 262 | b.circle(-250,6) 263 | b.pensize(4) 264 | b.circle(-250,4) 265 | 266 | b.pensize(1) 267 | b.up() 268 | b.seth(56) 269 | b.fd(238) 270 | b.down() 271 | #3 hair3 272 | b.color("#76EE00") 273 | b.pensize(4) 274 | b.seth(-2) 275 | b.circle(-100,31) 276 | b.pensize(6) 277 | b.circle(-100,31) 278 | b.fd(80) 279 | b.pensize(4) 280 | b.fd(45) 281 | 282 | 283 | b.pensize(1) 284 | b.up() 285 | b.seth(133) 286 | b.fd(100) 287 | b.down() 288 | #3 hair4 289 | b.color("#76EE00") 290 | b.seth(-78) 291 | b.pensize(2) 292 | b.circle(132,5) 293 | b.pensize(3) 294 | b.circle(132,10) 295 | b.pensize(4) 296 | b.circle(132,20) 297 | b.pensize(5) 298 | b.circle(132,20) 299 | b.circle(-120,20) 300 | b.pensize(4) 301 | b.circle(-120,10) 302 | b.pensize(3) 303 | b.circle(-120,8) 304 | b.pensize(2) 305 | b.circle(-120,7) 306 | 307 | b.pensize(1) 308 | b.up() 309 | b.seth(144) 310 | b.fd(368) 311 | b.down() 312 | #3 hair5 313 | b.color("#000000") 314 | b.begin_fill() 315 | b.seth(45) 316 | b.circle(-35,92) 317 | b.fd(70) 318 | b.seth(-42) 319 | b.fd(30) 320 | b.circle(-80,14) 321 | b.fd(60) 322 | b.seth(152) 323 | b.circle(-220,27) 324 | b.seth(115) 325 | b.circle(220,20) 326 | b.circle(2,176) 327 | b.circle(-150,25) 328 | b.circle(281,27) 329 | b.seth(138) 330 | b.circle(-280,26) 331 | b.circle(280,16) 332 | b.circle(24,65) 333 | b.end_fill() 334 | b.ht() 335 | 336 | #Krishna 337 | 338 | c=turtle.Turtle() 339 | c.speed(0) 340 | 341 | c.up() 342 | c.seth(166) 343 | c.fd(200) 344 | c.down() 345 | #1 eye1 1 346 | c.color("#000000") 347 | c.pensize(4) 348 | c.seth(150) 349 | c.circle(70,13) 350 | c.pensize(5) 351 | c.circle(70,10) 352 | c.pensize(6) 353 | c.circle(70,10) 354 | c.pensize(7) 355 | c.circle(70,15) 356 | c.pensize(5) 357 | c.circle(70,8) 358 | c.pensize(3) 359 | c.circle(70,7) 360 | c.pensize(2) 361 | c.circle(70,5) 362 | 363 | 364 | c.up() 365 | c.seth(-19.5) 366 | c.fd(104) 367 | c.down() 368 | #1 eye1 2 369 | c.color("#000080") 370 | c.pensize(5) 371 | c.seth(137) 372 | c.fd(8) 373 | c.pensize(4) 374 | c.fd(5) 375 | c.circle(8,92) 376 | c.circle(-37,26) 377 | c.pensize(5) 378 | c.circle(-37,20) 379 | c.pensize(6) 380 | c.circle(-37,10) 381 | c.pensize(7) 382 | c.circle(-37,10) 383 | c.pensize(6) 384 | c.circle(-37,10) 385 | c.pensize(4) 386 | c.circle(-37,10) 387 | c.pensize(3) 388 | c.fd(8) 389 | c.pensize(2) 390 | c.fd(7) 391 | c.pensize(1) 392 | c.fd(5) 393 | 394 | c.up() 395 | c.seth(17.5) 396 | c.fd(123) 397 | c.down() 398 | #1 eye2 1 399 | c.color("#000000") 400 | c.pensize(5) 401 | c.seth(58) 402 | c.circle(-80,5) 403 | c.pensize(6) 404 | c.circle(-80,10) 405 | c.pensize(7) 406 | c.circle(-80,15) 407 | c.pensize(8) 408 | c.circle(-80,15) 409 | c.pensize(7) 410 | c.circle(-80,10) 411 | c.pensize(6) 412 | c.circle(-80,8) 413 | c.pensize(4) 414 | c.circle(-80,7) 415 | c.pensize(3) 416 | c.circle(-80,5) 417 | c.pensize(2) 418 | c.circle(-80,3) 419 | c.pensize(1) 420 | c.circle(-80,2) 421 | 422 | 423 | c.up() 424 | c.seth(-139) 425 | c.fd(118) 426 | c.down() 427 | #1 eye2 2 428 | c.color("#000080") 429 | c.pensize(5) 430 | c.seth(68) 431 | c.fd(6) 432 | c.pensize(4) 433 | c.fd(3) 434 | c.pensize(3) 435 | c.fd(6) 436 | c.circle(-12,57) 437 | c.pensize(4) 438 | c.circle(-12,20) 439 | c.pensize(5) 440 | c.circle(-12,10) 441 | c.pensize(6) 442 | c.circle(45,30) 443 | c.pensize(7) 444 | c.circle(45,20) 445 | c.pensize(6) 446 | c.circle(45,15) 447 | c.pensize(4) 448 | c.circle(45,8) 449 | c.pensize(3) 450 | c.circle(45,7) 451 | c.fd(17) 452 | c.pensize(2) 453 | c.fd(10) 454 | 455 | c.up() 456 | c.seth(163) 457 | c.fd(165) 458 | c.down() 459 | #2 pottu 460 | c.color("#F0FFFF") 461 | c.seth(-10) 462 | c.pensize(4) 463 | c.fd(5) 464 | c.seth(-45) 465 | c.circle(-50,30) 466 | c.pensize(5) 467 | c.circle(-50,10) 468 | c.pensize(6) 469 | c.fd(15) 470 | c.circle(45,39) 471 | c.circle(7,138) 472 | c.pensize(7) 473 | c.fd(30) 474 | c.pensize(6) 475 | c.fd(20) 476 | c.pensize(5) 477 | c.fd(10) 478 | c.pensize(4) 479 | c.fd(5) 480 | c.circle(-18,35) 481 | c.pensize(3) 482 | c.circle(-18,20) 483 | 484 | 485 | c.up() 486 | c.seth(-89.5) 487 | c.fd(167) 488 | c.down() 489 | #2 nose 490 | c.color("#000080") 491 | 492 | c.circle(45,40) 493 | 494 | 495 | c.up() 496 | c.seth(-120) 497 | c.fd(31) 498 | c.down() 499 | #3 mouth 500 | c.color("#FA8072") 501 | c.seth(27) 502 | c.fd(18) 503 | c.circle(-9,85) 504 | c.seth(78) 505 | c.circle(-10,98) 506 | c.circle(25,80) 507 | c.seth(-127) 508 | c.circle(-67,68) 509 | c.up() 510 | c.seth(-35) 511 | c.fd(13) 512 | c.down() 513 | c.seth(-30) 514 | c.circle(37,85) 515 | 516 | c.pensize(1) 517 | c.up() 518 | c.seth(151.5) 519 | c.fd(270) 520 | c.down() 521 | #3 head1 522 | c.color("#FF7D40") 523 | c.begin_fill() 524 | c.seth(127) 525 | c.circle(-90,43) 526 | c.seth(45.5) 527 | c.fd(118) 528 | c.circle(-1,165) 529 | c.fd(74) 530 | c.circle(25,45) 531 | c.seth(-111) 532 | c.fd(50) 533 | c.seth(-40) 534 | c.fd(10) 535 | c.seth(61) 536 | c.fd(100) 537 | c.circle(-185,32) 538 | c.circle(1,175) 539 | c.circle(200,37) 540 | c.circle(-2.5,180) 541 | c.fd(48) 542 | c.seth(60) 543 | c.circle(-180,58) 544 | c.seth(173) 545 | c.circle(150,60) 546 | c.seth(-155) 547 | c.circle(238,33) 548 | c.seth(-92) 549 | c.circle(95,43) 550 | c.end_fill() 551 | 552 | c.up() 553 | c.seth(23) 554 | c.fd(55) 555 | c.down() 556 | #3 head2 557 | c.color("#FF7D40") 558 | c.begin_fill() 559 | c.seth(52) 560 | c.circle(-400,24) 561 | c.seth(-165) 562 | c.circle(200,50) 563 | c.end_fill() 564 | 565 | c.up() 566 | c.seth(38) 567 | c.fd(150) 568 | c.down() 569 | #3 head3 570 | c.color("#FF7D40") 571 | c.begin_fill() 572 | c.seth(2) 573 | c.circle(-180,20) 574 | c.seth(133) 575 | c.circle(55,70) 576 | c.end_fill() 577 | 578 | c.up() 579 | c.seth(9) 580 | c.fd(152) 581 | c.down() 582 | #3 head4 583 | c.color("#FF7D40") 584 | c.begin_fill() 585 | c.seth(-20) 586 | c.circle(-50,98) 587 | c.seth(80) 588 | c.circle(70,65) 589 | c.end_fill() 590 | 591 | 592 | c.up() 593 | c.seth(-91) 594 | c.fd(80) 595 | c.down() 596 | #1 hair1 597 | c.color("#000000") 598 | c.seth(-35) 599 | c.pensize(3) 600 | c.circle(-25,45) 601 | c.pensize(4) 602 | c.circle(-25,50) 603 | c.pensize(5) 604 | c.circle(-10,70) 605 | c.pensize(5) 606 | c.circle(-18,80) 607 | c.circle(-11,150) 608 | c.pensize(4) 609 | c.circle(-11,60) 610 | c.pensize(3) 611 | c.circle(-11,30) 612 | c.pensize(2) 613 | c.circle(-11,20) 614 | c.pensize(1) 615 | c.circle(-11,10) 616 | 617 | c.up() 618 | c.seth(32) 619 | c.fd(29) 620 | c.down() 621 | #1 hair2 622 | c.color("#000000") 623 | c.seth(24) 624 | c.pensize(3) 625 | c.circle(-25,45) 626 | c.pensize(4) 627 | c.circle(-25,50) 628 | c.pensize(5) 629 | c.circle(-11,70) 630 | c.pensize(5) 631 | c.circle(-19,80) 632 | c.circle(-12,150) 633 | c.pensize(4) 634 | c.circle(-12,60) 635 | c.pensize(3) 636 | c.circle(-12,30) 637 | c.pensize(2) 638 | c.circle(-12,20) 639 | c.pensize(1) 640 | c.circle(-12,10) 641 | 642 | c.up() 643 | c.seth(170) 644 | c.fd(31) 645 | c.down() 646 | #1 hair3 647 | c.color("#000000") 648 | c.seth(-33) 649 | c.pensize(3) 650 | c.circle(-48,45) 651 | c.pensize(4) 652 | c.circle(-48,50) 653 | c.pensize(5) 654 | c.circle(-22,90) 655 | c.pensize(6) 656 | c.circle(-30,95) 657 | c.pensize(6) 658 | c.circle(-20,150) 659 | c.pensize(5) 660 | c.circle(-20,60) 661 | c.pensize(4) 662 | c.circle(-20,30) 663 | c.pensize(3) 664 | c.circle(-20,20) 665 | c.pensize(2) 666 | c.circle(-20,10) 667 | 668 | 669 | c.up() 670 | c.seth(169) 671 | c.fd(245) 672 | c.down() 673 | #2 hair1 674 | c.color("#000000") 675 | c.seth(-155) 676 | c.pensize(3) 677 | c.circle(25,45) 678 | c.pensize(4) 679 | c.circle(25,50) 680 | c.pensize(5) 681 | c.circle(10,85) 682 | c.pensize(6) 683 | c.circle(16,70) 684 | c.circle(10,150) 685 | c.pensize(4) 686 | c.circle(10,60) 687 | c.pensize(3) 688 | c.circle(10,30) 689 | c.pensize(2) 690 | c.circle(10,20) 691 | c.pensize(1) 692 | c.circle(10,10) 693 | 694 | c.up() 695 | c.seth(167) 696 | c.fd(23) 697 | c.down() 698 | #2 hair2 699 | c.color("#000000") 700 | c.seth(168) 701 | c.pensize(3) 702 | c.circle(25,45) 703 | c.pensize(4) 704 | c.circle(25,50) 705 | c.pensize(5) 706 | c.circle(12,85) 707 | c.pensize(6) 708 | c.circle(19,70) 709 | c.circle(11,150) 710 | c.pensize(4) 711 | c.circle(11,60) 712 | c.pensize(3) 713 | c.circle(11,30) 714 | c.pensize(2) 715 | c.circle(11,20) 716 | c.pensize(1) 717 | c.circle(11,10) 718 | 719 | c.up() 720 | c.seth(21) 721 | c.fd(30) 722 | c.down() 723 | #2 hair3 724 | c.color("#000000") 725 | c.seth(-148) 726 | c.pensize(3) 727 | c.circle(48,40) 728 | c.pensize(5) 729 | c.circle(48,50) 730 | c.pensize(6) 731 | c.circle(22,90) 732 | c.pensize(7) 733 | c.circle(30,95) 734 | c.pensize(6) 735 | c.circle(20,150) 736 | c.pensize(5) 737 | c.circle(20,60) 738 | c.pensize(4) 739 | c.circle(20,30) 740 | c.pensize(3) 741 | c.circle(20,20) 742 | c.pensize(2) 743 | c.circle(20,10) 744 | 745 | c.up() 746 | c.seth(33) 747 | c.fd(258) 748 | c.down() 749 | #1 peacock1 750 | c.color("#7FFFD4") 751 | c.pensize(3) 752 | c.seth(85) 753 | c.circle(150,25) 754 | 755 | c.pensize(1) 756 | c.up() 757 | c.seth(-88) 758 | c.fd(42) 759 | c.down() 760 | #1 peacock2 761 | c.color("#0000CD") 762 | c.begin_fill() 763 | c.seth(131) 764 | c.circle(-75,45) 765 | c.circle(-12,150) 766 | c.circle(-85,35) 767 | c.seth(88) 768 | c.circle(75,34) 769 | c.circle(5,137) 770 | c.circle(75,40) 771 | c.end_fill() 772 | 773 | c.up() 774 | c.seth(135) 775 | c.fd(15) 776 | c.down() 777 | #1 peacock3 778 | c.color("#00FF00") 779 | c.begin_fill() 780 | 781 | c.seth(140) 782 | c.circle(-65,77) 783 | c.circle(-20,125) 784 | c.circle(-85,45) 785 | c.seth(84) 786 | c.circle(75,32) 787 | c.circle(15,140) 788 | c.circle(65,47) 789 | c.end_fill() 790 | c.end_fill() 791 | 792 | c.up() 793 | c.seth(-110) 794 | c.fd(4) 795 | c.down() 796 | #1 peacock4 797 | c.color("#7FFFD4") 798 | c.begin_fill() 799 | 800 | c.seth(140) 801 | c.circle(-70,70) 802 | c.circle(-28,145) 803 | c.circle(-85,27) 804 | 805 | c.seth(54) 806 | c.circle(50,50) 807 | c.circle(-30,60) 808 | 809 | c.seth(-140) 810 | c.circle(50,35) 811 | c.seth(74) 812 | c.circle(100,36) 813 | c.seth(-82) 814 | c.circle(-70,35) 815 | 816 | c.seth(92) 817 | c.circle(55,50) 818 | c.circle(-35,65) 819 | c.seth(-135) 820 | c.circle(125,70) 821 | c.seth(140) 822 | c.circle(-80,50) 823 | 824 | c.seth(-94) 825 | c.circle(100,70) 826 | c.end_fill() 827 | c.ht() 828 | 829 | 830 | #pullangulal 831 | 832 | d=turtle.Turtle() 833 | d.speed(0) 834 | d.color('#F4A460') 835 | d.up() 836 | d.seth(-159) 837 | d.fd(296) 838 | d.down() 839 | #1 840 | d.pensize(3) 841 | d.seth(-90) 842 | d.begin_fill() 843 | d.fd(18) 844 | d.seth(-179) 845 | d.fd(20) 846 | d.seth(90) 847 | d.fd(18) 848 | d.seth(1) 849 | d.fd(20) 850 | d.end_fill() 851 | 852 | 853 | 854 | d.fd(550) 855 | d.seth(-90) 856 | d.fd(18) 857 | d.seth(-179) 858 | d.fd(550) 859 | d.seth(90) 860 | d.fd(18) 861 | d.pensize(1) 862 | d.seth(1) 863 | d.fd(115) 864 | d.seth(-50) 865 | d.begin_fill() 866 | d.circle(18,103) 867 | d.end_fill() 868 | d.seth(1) 869 | d.fd(91) 870 | d.seth(-50) 871 | d.begin_fill() 872 | d.circle(18,103) 873 | d.end_fill() 874 | d.seth(1) 875 | d.fd(35) 876 | d.seth(-50) 877 | d.begin_fill() 878 | d.circle(18,103) 879 | d.end_fill() 880 | d.seth(1) 881 | d.fd(35) 882 | d.seth(-50) 883 | d.begin_fill() 884 | d.circle(18,103) 885 | d.end_fill() 886 | d.seth(1) 887 | d.fd(35) 888 | d.seth(-50) 889 | d.begin_fill() 890 | d.circle(18,100) 891 | d.end_fill() 892 | d.seth(1) 893 | d.fd(99) 894 | d.seth(-90) 895 | d.fd(18) 896 | d.seth(-179) 897 | d.fd(550) 898 | d.seth(90) 899 | d.fd(18) 900 | 901 | 902 | d.seth(1) 903 | d.fd(550) 904 | d.seth(-90) 905 | d.fd(1) 906 | d.begin_fill() 907 | d.seth(1) 908 | d.fd(15) 909 | d.seth(90) 910 | d.fd(5) 911 | d.circle(-7,115) 912 | d.fd(55) 913 | d.seth(-162) 914 | d.fd(55) 915 | d.circle(-7,115) 916 | d.fd(5) 917 | d.seth(-179) 918 | d.fd(15) 919 | d.end_fill() 920 | 921 | 922 | d.pensize(5) 923 | d.up() 924 | d.seth(-90) 925 | d.fd(1) 926 | d.seth(-179) 927 | d.fd(47) 928 | d.down() 929 | d.begin_fill() 930 | d.seth(-110) 931 | d.circle(-130,90) 932 | d.circle(500,50) 933 | d.seth(20) 934 | d.circle(-400,46) 935 | d.circle(204,101) 936 | d.end_fill() 937 | d.ht() 938 | 939 | 940 | --------------------------------------------------------------------------------