摘要: Pycharm开发环境设置与熟悉。 练习基本输入输出: print('你好,{}.'.format(name)) print(sys.argv) 库的使用方法: import ... from ... import ... 条件语句: if (abs(pos()))<1: break 循环语句: f 阅读全文
posted @ 2018-03-20 17:49 227温立恒 阅读(135) 评论(0) 推荐(0) 编辑
摘要: import turtle def goto(x,y): turtle.up(); turtle.goto(x,y); turtle.down; def drawxwjx(x): turtle.begin_fill() for i in range(5): turtle.forward(x) turtle.right(1... 阅读全文
posted @ 2018-03-20 16:20 227温立恒 阅读(356) 评论(0) 推荐(0) 编辑