摘要: class Account: """一个模拟银行账户的简单类""" def __init__(self, name, account_number, initial_amount = 10): """构造新账户""" self._name = name self._card_no = account 阅读全文
posted @ 2023-06-12 01:36 202113630031洪源 阅读(13) 评论(0) 推荐(0)
摘要: from turtle import * def moveto(x,y): ''' 画笔移动到坐标(x,y)处 ''' penup() goto(x,y) pendown() def draw(n,size = 100): ''' 绘制边长为size的正n边形 ''' for i in range( 阅读全文
posted @ 2023-06-12 01:29 202113630031洪源 阅读(24) 评论(0) 推荐(0)