摘要: 1、turtle的绘图窗体 turtle.setup(width, height, startx, starty) setup()设置窗体大小及位置 4个参数中后两个可选(后两个省略时默认窗口在屏幕正中心)【setup()不是必须的】 2、turtle空间坐标体系 (1)、从当前点去(x,y) tu 阅读全文
posted @ 2020-03-11 21:55 哦噢 阅读(55) 评论(0) 推荐(0) 编辑
摘要: print("Hello World") 阅读全文
posted @ 2020-03-11 16:24 哦噢 阅读(252) 评论(0) 推荐(0) 编辑
摘要: n=eval(input()) n1=pow(n,0) n2=pow(n,1) n3=pow(n,2) n4=pow(n,3) n5=pow(n,4) n6=pow(n,5) print(n1,n2,n3,n4,n5,n6) 阅读全文
posted @ 2020-03-11 16:06 哦噢 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: #说句心里话 name=input("") heartword=input("") str1=name+',我想对你说,'+heartword print(str1) 阅读全文
posted @ 2020-03-11 15:49 哦噢 阅读(1713) 评论(0) 推荐(0) 编辑
摘要: import turtleturtle.penup()turtle.fd(-100)turtle.pendown()turtle.pensize(5)turtle.pencolor("red")turtle.left(60)turtle.forward(100)turtle.right(120)tu 阅读全文
posted @ 2020-03-11 15:07 哦噢 阅读(198) 评论(0) 推荐(0) 编辑
摘要: import turtleturtle.penup()turtle.fd(-100)turtle.pendown()turtle.pensize(10)turtle.pencolor("green")turtle.left(30)turtle.forward(100)turtle.right(60) 阅读全文
posted @ 2020-03-11 14:43 哦噢 阅读(3546) 评论(0) 推荐(0) 编辑
摘要: import mathimport turtle RADIUS = 100 angleSin18 = math.sin(math.pi * 0.1) * RADIUSangleCos18 = math.cos(math.pi * 0.1) * RADIUSangleSin54 = math.sin( 阅读全文
posted @ 2020-03-11 14:14 哦噢 阅读(1661) 评论(0) 推荐(0) 编辑