摘要: # 实验任务1:模拟银行账户,理解类的封装特性 ```python ''' 银行账户 数据:持卡人姓名、账号、当前余额 操作:取款、存款、打印账户信息、返回账户余额 ''' class Account: '''一个模拟银行账户的简单类''' def __init__(self, name, acco 阅读全文
posted @ 2023-06-08 21:17 风自然 阅读(10) 评论(0) 推荐(0) 编辑
摘要: # 实验任务1:使用turtle绘制基础图形(验证性) ## task1_1.py ```python from turtle import * def move(x, y): '''画笔移动到坐标(x,y)处''' penup() goto(x, y) pendown() def draw(n, 阅读全文
posted @ 2023-06-08 17:02 风自然 阅读(41) 评论(0) 推荐(0) 编辑