bowen
少儿编程侯老师
这个作者很懒,什么都没留下…
展开
-
bowen -猜拳游戏
import random"""石头1 布2 剪刀3我们赢电脑 我们 结果1 2 -12 3 -13 1 2"""# 我们出拳we=int(input('你想出什么'))print(we)computer=random.randint(1,3)print(computer)a=computer-weif a==-1 or a==2: print('你赢了')# 判断输赢...原创 2020-08-15 16:47:37 · 124 阅读 · 0 评论 -
bowen - 深海巨兽
import turtle as timport turtleturtle.speed(0)# skyturtle.bgcolor('skyblue')# seaturtle.color('blue')turtle.fillcolor('blue')turtle.begin_fill()turtle.up()turtle.goto(-360,0)turtle.down()turtle.fd(720)turtle.rt(90)turtle.fd(360)turtle.rt(90)原创 2020-08-06 20:48:06 · 152 阅读 · 0 评论 -
bowen -画瞄准镜和奔驰车标
import turtleturtle.pensize(5)turtle.circle(100)turtle.lt(90)turtle.fd(200)turtle.up()turtle.goto(100,100)turtle.down()turtle.lt(90)turtle.fd(200)turtle.up()turtle.goto(0,150)turtle.down()turtle.bk(10)turtle.fd(20)turtle.up()turtle.goto(50,原创 2020-07-28 20:46:06 · 510 阅读 · 0 评论