当前位置:   article > 正文

python turtle海龟绘图-----汉字新年快乐(处女作)_用python海龟制图turtle中汉字

用python海龟制图turtle中汉字

今天是大年三十,前两天学了turtle(海龟)绘图,今天心血来潮想创作一番,于是写了‘新年快乐’四个字体,代码不难,纪念一下,Python正在学习中,难的目前不会写,哈哈,新的一年,我的新年愿望是代码会有很大进步。
先附上笔记:

  • import turtle ---------- turtle库的引用,import turtle as t(t就是起的别名)
  • penup简称up --------- t.up()就是抬起笔
  • pendown简称down --------t.down()就是落下笔
  • forward简称fd------------t.fd()就是向前画
  • backward----------t.backward()向后画
  • goto----------t.goto(二维坐标)箭头到此地
  • pensize--------t.pensize(笔的粗细(像素))
  • pencolor简称color----t.color(“red”)参数也可为rgb小数值或元组值
  • left---------t.left()箭头左转,里面写度数,可正可负
  • right-----右转
  • setup-----t.setup(width,height,startx,starty)设置窗口大小及位置
  • begin_fill------开始填充
  • end_fill---------结束填充
  • fillcolor----------填充颜色
  • circle---------一个参数是圆,二个(半径,角度(对应弧度)),另外,circle(40,steps=3)为三角形边长40像素,多边形可以改steps值。

下面是我写新年快乐的代码:

import turtle as t
t.pensize(10)
t.color("red")
t.up()
t.goto(-200,150)
t.pendown()
t.left(-135)
t.fd(30)
t.up()
t.goto(-250,130)
t.pendown()
t.left(135)
t.fd(80)
t.up()
t.goto(-235,120)
t.down()
t.left(-45)
t.fd(28)
t.up()
t.goto(-185,120)
t.down()
t.left(-90)
t.fd(25)
t.up()
t.goto(-250,100)
t.down()
t.left(135)
t.fd(80)
t.up()
t.goto(-250,80)
t.down()
t.fd(80)
t.up()
t.goto(-205,100)
t.down()
t.left(-90)
t.fd(100)
t.left(-135)
t.fd(30)
t.up()
t.goto(-220,60)
t.down()
t.left(90)
t.fd(40)
t.up()
t.goto(-190,60)
t.down()
t.left(90)
t.fd(30)
t.up()
t.goto(-100,150)
t.down()
t.left(-100)
t.fd(60)
t.left(50)
t.fd(120)
t.backward(95)
t.left(95)
t.fd(70)
t.up()
t.goto(-115,90)
t.down()
t.left(-90)
t.fd(93)
#年
t.up()
t.color("orange")
t.goto(100,135)
t.left(-45)
t.down()
t.fd(45)
t.backward(22)
t.left(135)
t.fd(100)
t.up()
t.goto(97,95)
t.down()
t.fd(80)
t.backward(80)
t.left(-90)
t.fd(30)
t.left(-90)
t.fd(15)
t.backward(112)
t.up()
t.goto(140,115)
t.down()
t.left(90)
t.fd(110)
#kuai
t.up()
t.color("pink")
t.goto(-230,-55)
t.down()
t.fd(160)
t.up()
t.goto(-233,-95)
t.down()
t.left(-40)
t.fd(27)
t.pensize(3)
t.backward(30)
t.left(76)
t.pensize(10)
t.fd(20)
t.up()
t.goto(-190,-90)
t.left(55)
t.down()
t.fd(80)
t.left(-90)
t.fd(40)
t.left(90)
t.fd(20)
t.backward(110)
t.up()
t.goto(-150,-50)
t.left(-90)
t.down()
t.fd(80)
t.circle(-150,40)
t.up()
t.goto(-150,-140)
t.down()
t.left(50)
t.circle(150,35)
#le
t.up()
t.goto(100,-80)
t.color("yellow")
t.down()
t.left(50)
t.circle(180,30)
t.up()
t.goto(100,-80)
t.down()
t.left(-127)
t.fd(45)
t.left(90)
t.fd(90)
t.up()
t.goto(140,-85)
t.down()
t.left(-90)
t.fd(130)
t.left(-135)
t.fd(40)
t.up()
t.goto(124,-155)
t.down()
t.left(90)
t.fd(50)
t.up()
t.goto(158,-160)
t.down()
t.left(80)
t.fd(46)
#tuan
t.up()
t.goto(-50,-160)
t.down()
t.pensize(5)
t.color("bloown")
t.begin_fill()
t.fillcolor("yellow")
t.circle(50)
t.end_fill()
t.up()
t.goto(-35,-130)
t.down()
t.color("black")
t.circle(7)
t.up()
t.goto(5,-130)
t.down()
t.circle(7)
t.up()
t.goto(-20,-150)
t.down()
t.circle(20,130)
#xin
t.up()
t.goto(-30,80)
t.pensize(60)
t.color("red")
t.left(-120)
t.down()
t.fd(50)
t.left(90)
t.fd(50)
#ok   over

  • 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

绘图的过程我不会插入,下面是画完的结果,初次创作,不喜勿喷,谢谢
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/124176
推荐阅读
相关标签
  

闽ICP备14008679号