02 2022 档案
摘要:用户与程序的交互 CLI(Command Line Interface,命令行接口) GUI( Graphical User Interface,图形用户接口) CLI Command Line Interface,命令行接口,以一行文字作为输入,一般只能显示文字,例如windows自带的cmd G
阅读全文
摘要:一个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
阅读全文