python程序设计基础教程01--24-9.9神奇小海龟(奥运五环)

#打印hello,world      print("hello,world")

##召唤海龟  import turtle as t

##画一个圆  t.circle(100)

##海龟箭头方向  t.left(90) or t.right(180)

#eg有趣几何图形

import turtle as t

t.circle(50)

t.left(90)

t.circle(50)

t.left(90)

t.circle(50)

t.left(90)

t.circle(50)

##循环语句  for i in range():

  #eg

import turtle as t

for i in range(12):

t.right(91)

t.circle(100)

##提高速度 t.speed(0)

##改变颜色 t.color('red)

##结束运行后使图案停留 t.done()

##改变画笔粗细  t.pensize(10)

##抬笔  t.penup()

##落笔  t.pendown

 #eg画奥运五环

import turtle as t
t.penup()
t.goto(170,0)
t.pendown()
t.pensize(10)
t.color('red')
t.circle(75)

t.penup()
t.goto(90,70)
t.pendown()
t.color('green')
t.left(180)
t.circle(75)

t.penup()
t.goto(0,0)
t.pendown()
t.color('black')
t.left(180)
t.circle(75)

t.penup()
t.goto(-80,70)
t.pendown()
t.color('yellow')
t.left(180)
t.circle(75)

t.penup()
t.goto(-170,0)
t.pendown()
t.color('blue')
t.left(180)
t.circle(75)
t.done()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值