会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jawy
博客园
首页
新随笔
联系
订阅
管理
2021年2月10日
连续存储_数组_C
摘要: ``` # include # include # include struct Arr { int * pBase; int len; int cnt; }; void init_arr(struct Arr * pArr, int length); bool append_arr(struct
阅读全文
posted @ 2021-02-10 23:41 jawy
阅读(6)
评论(0)
推荐(0)
2020年12月26日
MATLAB——矩阵
摘要: ``` % 矩阵相乘 A=[3,1;1,0]; B=[2,0;0,2]; Uo=A*B % 求矩阵的逆 P=[6,2;2,0]; inv(P) % 求约旦标准型 A=[1 -3 4;4 -7 8;6 -7 7]; [P,J]=jordan(A) % 由状态方程求得传递函数 p58例2.7.3 A=[
阅读全文
posted @ 2020-12-26 18:57 jawy
阅读(62)
评论(0)
推荐(0)
2020年11月4日
day004
摘要: **一、列表的初识** + why:int bool str:'123 True 太白' + str: 存储少量的数据。 + str:切片还是对其进行任何操作,`但是! 获取的内容全都是str类型!` 存储数据单一 + what:list + l1 = [ 0, 'alex',True,[1, 2,
阅读全文
posted @ 2020-11-04 18:30 jawy
阅读(16)
评论(0)
推荐(0)
2020年10月7日
day003
摘要: **一、基础数类型总览** 1. 10203 123 3340 **int** +- * / 等等 2. '今天吃了没?' **str** 存储少量的数据,+ *int 、 切片, 其他操作方法 3. True False **bool** 判断真假 4. [12, True, 'alex', [1
阅读全文
posted @ 2020-10-07 20:16 jawy
阅读(4)
评论(0)
推荐(0)
2020年6月29日
网易云签到+封装server酱第二类处理方法_Python
摘要: ``` #coding:utf-8 from configparser import ConfigParser from threading import Timer import requests import random import hashlib import datetime impor
阅读全文
posted @ 2020-06-29 10:24 jawy
阅读(8)
评论(0)
推荐(0)
2020年6月28日
SCF搭建网易云过程学习_Python
摘要: ## 目标 : 网易云音乐升级 调用官方接口,每天自动刷完300首歌,一个平均耗时为2分钟左右。放在服务器运行即可不需要人工干预,每天自动听歌做任务,向你的微信发送任务通知。 ## 项目结构 ``` |-- 项目文件夹 |-- LICENSE |-- README.md |-- account.js
阅读全文
posted @ 2020-06-28 18:29 jawy
阅读(12)
评论(0)
推荐(0)
2020年6月19日
京东618_SCF_Python
摘要: ``` # coding: utf-8 import requests import time import datetime import sys import logging import urllib import json reload(sys) sys.setdefaultencoding
阅读全文
posted @ 2020-06-19 20:41 jawy
阅读(12)
评论(0)
推荐(0)
网易云音乐_简单_Python
摘要: ``` import requests def start(): cookies = { 'MUSIC_U': '***************', '__csrf': '****************', } res = requests.post('http://www.yibiwy.fun/
阅读全文
posted @ 2020-06-19 20:34 jawy
阅读(9)
评论(0)
推荐(0)
网易云签到+封装server酱_Python
摘要: ``` # coding=utf-8 import requests import urllib3 import json urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) def server_jame(key,
阅读全文
posted @ 2020-06-19 20:25 jawy
阅读(12)
评论(0)
推荐(0)
贴吧测试_Python
摘要: ``` # -*- coding: utf8 -*- from requests import Session from time import sleep from random import randint def main(*args): sleep(randint(0, 10)) # 数据
阅读全文
posted @ 2020-06-19 17:44 jawy
阅读(8)
评论(0)
推荐(0)
下一页
公告
回顶部
Document