当前位置:   article > 正文

使用Python turtle画小猪佩奇_python编程画小猪佩奇

python编程画小猪佩奇

使用Python库简单的画一个小猪佩奇
画出来的效果如图:在这里插入图片描述

代码如下

import turtle as t
t.colormode(255)
t.speed(0)

#设置背景
t.penup()
t.goto(-300,300)
t.pendown()
t.color(73,209,249)
t.pensize(800)
t.forward(800)

t.penup()
t.goto(-300,-250)
t.pendown()
t.color(44,195,32)
t.pensize(400)
t.forward(900)

#画白云
t.penup()
t.goto(-175,220)
t.pendown()
t.pensize(1)
def filled_circle(radius, color):
    t.color(color)
    t.begin_fill()
    t.circle(radius)
    t.end_fill()

radius = 25
cloud_color="white"

filled_circle(radius,cloud_color)
t.forward(radius)
for i in range(4):
    filled_circle(radius,cloud_color)
    t.right(90)

t.penup()
t.goto(185,150)
t.pendown()


radius = 35
cloud_color="white"

filled_circle(radius,cloud_color)
t.forward(radius)
for i in range(4):
    filled_circle(radius,cloud_color)
    t.right(90)



#画鼻子
t.speed(0)
t.penup()
t.goto(-100,80)
t.pendown()
t.speed(1)
t.color(255,192,203)
t.begin_fill()
t.pencolor(240,128,128)
t.pensize(3)
t.seth(-30)
t.begin_fill()
a = 0.3
for i in range(120):
    if 0 <= i < 30 or 60 <= i < 90:
        a = a + 0.05
        t.left(3)  # 向左转3度
        t.forward(a)  # 向前走a的步长
    else:
        a = a - 0.05
        t.left(3)
        t.forward(a)
t.end_fill()
t.penup()
t.seth(70)
t.forward(25)
t.pendown()
t.color(178,34,34)
t.begin_fill()
t.circle(3)
t.end_fill()
t.penup()
t.seth(-50)
t.forward(9)
t.pendown()
t.begin_fill()
t.circle(3)
t.end_fill()

#画头
t.speed(0)
t.color(255,192,203)
t.pencolor(240,128,128)
t.penup()
t.seth(60)
t.forward(27)
t.pendown()
t.begin_fill()
t.seth(180)
t.circle(270,-25)
t.circle(60,-125)
t.circle(100,-20)
t.circle(45,-135)
t.right(90)
t.circle(270,16)
t.seth(-30)
a = 0.3
t.pensize(0)
for i in range(60):
    if 0 <= i < 30 or 60 <= i < 90:
        a = a + 0.05
        t.left(3)  # 向左转3度
        t.forward(a)  # 向前走a的步长
    else:
        a = a - 0.05
        t.left(3)
        t.forward(a)

t.end_fill()

#画耳朵
t.speed(0)
t.pensize(3)
t.color(255,192,203)
t.penup()
t.seth(90)
t.forward(-13)
t.seth(0)
t.forward(80)
t.pendown()
t.pencolor(240,128,128)
t.begin_fill()
t.seth(100)
t.circle(-40,50)
t.circle(-10,120)
t.circle(-40,57)
t.end_fill()
t.penup()
t.seth(90)
t.forward(-6)
t.seth(0)
t.forward(12)
t.pendown()
t.begin_fill()
t.seth(100)
t.circle(-40,50)
t.circle(-10,120)
t.circle(-40,59)
t.end_fill()

#画眼睛
t.speed(0)
t.penup()
t.goto(-40,100)
t.pendown()
t.pensize(3)
t.color(255,255,255)
t.pencolor(240,128,128)
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.seth(90)
t.forward(-10)
t.seth(0)
t.forward(10)
t.pendown()
t.pencolor(0,0,0)
t.circle(2)
t.penup()
t.goto(0,75)
t.pendown()
t.pensize(3)
t.color(255,255,255)
t.pencolor(240,128,128)
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.seth(90)
t.forward(5)
t.seth(0)
t.forward(2)
t.pendown()
t.pencolor(0,0,0)
t.circle(2)

#画嘴
t.penup()
t.goto(-20,30)
t.pendown()
t.pensize(4)
t.pencolor(225,81,144)
t.seth(0)
t.right(50)
t.circle(25,100)

#画腮红
t.penup()
t.goto(60,50)
t.pendown()
t.color(255,106,106)
t.begin_fill()
t.circle(12)
t.end_fill()

#画身体
t.speed(1)
t.penup()
t.seth(90)
t.forward(-65)
t.seth(180)
t.forward(80)
t.pendown()
t.color(236,94,82)
t.pencolor(233,30,15)
t.begin_fill()
t.seth(-130)
t.circle(80,10)
t.circle(250,25)
t.seth(0)
t.forward(180)
t.seth(90)
t.circle(250,25)
t.circle(80,30)
t.seth(60)
t.pencolor(240,128,128)
t.pensize(1)
t.circle(60,-45)
t.circle(100,-15)
t.circle(45,-30)
t.end_fill()

#画手
t.penup()
t.seth(90)
t.forward(-35)
t.seth(180)
t.forward(28)
t.pendown()
t.seth(135)
t.pencolor(255,192,203)
t.pensize(8)
t.forward(55)
t.penup()
t.backward(15)
t.seth(90)
t.pendown()
t.forward(20)
t.penup()
t.backward(20)
t.seth(180)
t.pendown()
t.forward(12)
t.penup()
t.seth(0)
t.forward(190)
t.seth(270)
t.forward(27)
t.seth(45)
t.pendown()
t.pencolor(255,192,203)
t.pensize(8)
t.forward(55)
t.penup()
t.backward(15)
t.seth(90)
t.pendown()
t.forward(20)
t.penup()
t.backward(20)
t.seth(0)
t.pendown()
t.forward(14)

#画尾巴
t.penup()
t.seth(90)
t.forward(-80)
t.seth(180)
t.forward(30)
t.seth(0)
t.pendown()
t.pencolor(255,192,203)
t.pensize(6)
t.circle(70,20)
t.circle(10,330)
t.circle(70,30)

#画左脚
t.speed(0)
t.penup()
t.seth(90)
t.forward(-37)
t.seth(0)
t.forward(-180)
t.pendown()
t.seth(270)
t.pendown()
t.pensize(8)
t.pencolor(255,192,203)
t.forward(15)
t.color(249,241,98)
t.pencolor(236,222,71)
t.pensize(3)
t.seth(180)
t.begin_fill()
t.forward(10)
t.seth(270)
t.forward(13)
t.seth(180)
t.forward(18)
t.circle(10,180)
t.forward(40)
t.seth(90)
t.forward(32)
t.seth(180)
t.forward(12)
t.end_fill()

#画右脚
t.penup()
t.seth(90)
t.forward(15)
t.seth(0)
t.forward(90)
t.seth(270)
t.pendown()
t.pensize(8)
t.pencolor(255,192,203)
t.forward(15)
t.color(249,241,98)
t.pencolor(236,222,71)
t.pensize(3)
t.seth(180)
t.begin_fill()
t.forward(10)
t.seth(270)
t.forward(13)
t.seth(180)
t.forward(18)
t.circle(10,180)
t.forward(40)
t.seth(90)
t.forward(32)
t.seth(180)
t.forward(12)
t.end_fill()
t.hideturtle()
t.done()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/198678
推荐阅读
相关标签
  

闽ICP备14008679号