Artificial Intelligence
Please fill the required field.

draw mona lisa in python code


from turtle import* # Start Drawing pencolor('black') fillcolor('yellow') begin_fill() # Move DrawingMaterials penup() goto(-160, -50) pendown() # Move to draw Mona Lisa goto(-165, 132) goto(-133, 132) goto(-133, 180) goto(-165, 180) # Drawing Body goto(-90, 180) goto(-95, 115) goto(-95, 60) goto(-90, 38) goto(-113, 68) goto(-127, 34) goto(-143, 0) goto(-157, 24) goto(-171, 0) # Drawing Neck goto(-175, 66) goto(-165, 102) goto(-175, 132) # Drawing Hair goto(-117, 173) goto(-125, 195) goto(-133, 173) # End Drawing goto(-165, 180) end_fill() # Move to draw Mona Lisa Face penup() goto(-133, 132) pendown() fillcolor('yellow') begin_fill() # Drawing LeftEye goto(-140, 91) goto(-113, 96) goto(-124, 83) goto(-140, 91) end_fill() # Drawing RightEye fillcolor('yellow') begin_fill() goto(-106, 96) goto(-95, 82) goto(-75, 99) goto(-106, 96) end_fill() # Drawing Nose penup() goto(-113, 115) pendown() goto(-95, 74) goto(-95, 111) # Drawing Mouth penup() goto(-95, 82) pendown() goto(-73, 99) # End Drawing penup() done()

1000 Characters left