2021年10月23日
摘要: 第一章 认识微信小程序 1.1 微信小程序介绍 1.2 开发准备 1.3 开发工具使用 1.4 案例-欢迎使用微信小程序 第二章 小程序框架分析 2.1 目录结构分析 2.2 注册程序应用 2.3 注册页面的使用 2.4 数据绑定 2.5 条件渲染 2.6 列表渲染 2.7 定义模板 2.8 引用功 阅读全文
posted @ 2021-10-23 22:16 R救赎 阅读(57) 评论(0) 推荐(0)
  2021年9月28日
摘要: 四则运算 1. PSP表格 计划 Planning 计划完成需要的时间 实际完成需要的时间 估计这个任务需要多少时间,并规划大致工作步骤 Estimate 15 15 需求分析 (包括学习新技术) Analysis 150 120 生成设计文档 Design Spec 30 30 设计复审 Desi 阅读全文
posted @ 2021-09-28 00:59 R救赎 阅读(1) 评论(0) 推荐(0)
  2020年5月13日
摘要: import 阅读全文
posted @ 2020-05-13 16:12 R救赎 阅读(124) 评论(0) 推荐(0)
  2020年5月6日
摘要: 一、numpy和matplotlip读书笔记 ①numpy库 1.numpy 是用于处理含有同种元素的多维数组运算的第三方库。 2.numpy 库还包括三角运算函数、傅里叶变换、随机和概率分布、基本数值统计、位运算、矩阵运算等非常丰富的功能。 3.numpy 库处理的最基础数据类型是由同种元素构成的 阅读全文
posted @ 2020-05-06 18:05 R救赎 阅读(291) 评论(0) 推荐(0)
  2020年4月29日
摘要: turtle库是Python语言中绘制图像的函数库,该库由一只小乌龟,在以(x,y)的坐标系,从原点(0,0)的位置开始,由各种函数指令的控制,在平面坐标系中移动,从而在它爬行的路径上绘制了图形,再各种其他指令进行修饰,达到作者的要求。 基础工具: (一)canvas(画布): canvas是tur 阅读全文
posted @ 2020-04-29 00:59 R救赎 阅读(333) 评论(0) 推荐(0)
  2020年4月27日
摘要: def move(x, a, b, c): if (x == 1): print(a,"->",c) return move(x-1, a, c, b) move(1, a, b, c) move(x-1, b, a, c) n = eval(input()) move(n, "a", "b", " 阅读全文
posted @ 2020-04-27 14:10 R救赎 阅读(122) 评论(0) 推荐(0)
  2020年3月28日
摘要: import math import time scales=14 s,m,=1,2 print("执行开始".center(scales//2, "-")) start = time.perf_counter() for i in range(scales+1): s=math.sqrt((1-m 阅读全文
posted @ 2020-03-28 15:51 R救赎 阅读(191) 评论(0) 推荐(0)
  2020年3月13日
摘要: import turtle turtle.right(60) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.penup() turtle.f 阅读全文
posted @ 2020-03-13 23:50 R救赎 阅读(439) 评论(0) 推荐(0)
摘要: import turtle L=50 N=6 jiaodu=180-360/(N) tl=turtle.Turtle() #tl.speed(0) tl.screen.delay(0) def f1(): tl.fillcolor("yellow") tl.begin_fill() for i in 阅读全文
posted @ 2020-03-13 23:46 R救赎 阅读(169) 评论(0) 推荐(0)
摘要: import turtle import time turtle.pensize(5) turtle.pencolor("red") turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) 阅读全文
posted @ 2020-03-13 23:41 R救赎 阅读(92) 评论(0) 推荐(0)