2017年9月14日

条件、循环、函数定义、字符串操作练习

摘要: 用循环画五角星 import turtle turtle.color ('red') turtle.fillcolor ('yellow') turtle.begin_fill () for i in range (5): turtle.forward (100) turtle.right (144) turtle.end_fill () 用循环画同心圆 impor... 阅读全文

posted @ 2017-09-14 18:58 ohh咔咔咔 阅读(133) 评论(0) 推荐(0)

导航