2023年6月14日

摘要: task1 class Account: def __init__(self, name, account_number, initial_amount = 10): self._name = name self._card_no = account_number self._balance = i 阅读全文
posted @ 2023-06-14 09:45 Dughy 阅读(44) 评论(0) 推荐(0) 编辑

2023年6月12日

摘要: task1 1 from turtle import * 2 def move(x, y): 3 4 penup() 5 goto(x, y) 6 pendown() 7 def draw(n, size = 100): 8 9 for i in range(n): 10 fd(size) 11 l 阅读全文
posted @ 2023-06-12 15:09 Dughy 阅读(6) 评论(0) 推荐(0) 编辑

2023年6月5日

摘要: task6 1 with open('data6.csv','r',encoding='gbk') as f: 2 data1 = f.read().split('\n') 3 del data1[0] 4 for i in range(len(data1)): 5 data1[i] = eval( 阅读全文
posted @ 2023-06-05 22:02 Dughy 阅读(10) 评论(0) 推荐(0) 编辑

2023年4月26日

摘要: 任务一 1 import random 2 print('用列表存储随机整数: ') 3 lst = [random.randint(0, 100) for i in range(5)] 4 print(lst) 5 print('\n用集合存储随机整数: ') 6 s1 = {random.ran 阅读全文
posted @ 2023-04-26 01:06 Dughy 阅读(19) 评论(0) 推荐(0) 编辑

2023年3月28日

摘要: 任务一 实验源码 1 x = 'nba FIFA' 2 print(x.upper()) 3 print(x.lower()) 4 print(x.swapcase()) 5 print() 6 7 x = 'abc' 8 print(x.center(10, '*')) 9 print(x.lju 阅读全文
posted @ 2023-03-28 20:57 Dughy 阅读(14) 评论(0) 推荐(0) 编辑

2023年3月13日

摘要: 实验任务1 实验源码 1 print('hey,u') 2 3 print('hey','u') 4 x,y,z=1,2,3 5 print(x,y,z) 6 7 print('x=%d,y=%d,z=%d'%(x,y,z)) 8 print('x={},y={},z={}'.format(x,y, 阅读全文
posted @ 2023-03-13 22:21 Dughy 阅读(18) 评论(0) 推荐(0) 编辑