02 2022 档案

摘要:用户与程序的交互 CLI(Command Line Interface,命令行接口) GUI( Graphical User Interface,图形用户接口) CLI Command Line Interface,命令行接口,以一行文字作为输入,一般只能显示文字,例如windows自带的cmd G 阅读全文
posted @ 2022-02-27 22:33 hgrun 阅读(1546) 评论(0) 推荐(2) 编辑
摘要:一个turtle画图的示例 import turtle turtle.speed(0) turtle.penup() def drawDash(n): for i in range(0,n): turtle.pendown() turtle.forward(10) turtle.penup() tu 阅读全文
posted @ 2022-02-27 20:36 hgrun 阅读(63) 评论(0) 推荐(0) 编辑