摘要: 56、画图,学用circle画圆形from tkinter import *canvas = Canvas(width=800, height=600, bg='yellow')canvas.pack(expand=YES, fill=BOTH)k = 1j... 阅读全文
posted @ 2018-12-24 18:06 hopelv 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 44、两个 3 行 3 列的矩阵,实现其对应位置的数据相加,并返回一个新矩阵import numpy # pip install numpy 需要安装模块 ,支持大量的维度数组与矩阵运算x = numpy.array([[12, 7, 3], [4, 5... 阅读全文
posted @ 2018-12-24 08:40 hopelv 阅读(913) 评论(0) 推荐(0) 编辑