码迷,mamicode.com
首页 >  
搜索关键字:post data    ( 92220个结果
train_data
for images, labels in train_data: for images, labels in train_data: img = images[0] img = img.numpy() img = np.transpose(img, (1, 2, 0)) plt.imshow(im ...
分类:其他好文   时间:2021-05-23 23:01:36    阅读次数:0
数据结构--单链表 C语言
//单链表基本操作 1 #include <stdio.h> 2 3 #include <stdlib.h> 4 5 6 typedef struct _NODE 7 { 8 int data; 9 struct _NODE *pNext; 10 }NODE,*PNODE; 11 12 PNODE ...
分类:编程语言   时间:2021-05-23 22:56:58    阅读次数:0
python引入其他文件夹下的py文件
红色方框要引入箭头里面的 import sys sys.path.append('../../config/') from database import * print(MYSQL_CONFIG) ...
分类:编程语言   时间:2021-05-20 17:53:11    阅读次数:0
自由之枫——Get与Post请求方式的区别
作者:杨泉 (1)是基于什么前提的? 如果什么前提都没有,不使用任何规范,只考虑语法和理论上的HTTP协议。 GET和POST几乎没什么区别:只有名字不一样 (2)如果是基于RFC规范的。 理论上的(Specification):GET和POST是具有相同语法的,但是有不同的语义。get是用来获取数 ...
分类:其他好文   时间:2021-05-04 16:41:37    阅读次数:0
树莓派4B-搭建Jenkins
官网下载Jenkins https://www.jenkins.io/zh/download/ 构建jenkins镜像 # docker build -t jenkins:2.277.3 . from ubuntu:latest run sed -i 's/ports.ubuntu.com/mirr ...
分类:其他好文   时间:2021-05-04 16:25:44    阅读次数:0
微信小程序学习
注册 使用一个没有注册过的邮箱 然后按照注册流程注册 标签 1.text -- 相当于web中的span标签 行内元素 2.view -- 相当于div 块级元素 3.checkbox -- 复选框 文件格式 1 .js写JS的 存档data数据 类似VUE 2 .json 配置文件 可以设置标题 ...
分类:微信   时间:2021-05-04 16:13:33    阅读次数:0
[AWS Design Cost-Optimized Architectures] 4.2 Identify cost-effective compute and database services
RDS Scalabilty Scalabilty allows a solution to grow to increase storage, processing, memory, and netowrk operations By changing the class of an instan ...
分类:数据库   时间:2021-05-04 16:10:48    阅读次数:0
Pandas-02-DataFrame运算
1. 算术运算 add(other) 比如进行数学运算加上一个具体数字 data["open"].add(10) # open列加10 # data["open"] + 10 # 一般不这么写 sub(other) 用法同add 2. 逻辑运算 2.1. 逻辑运算符号 逻辑运算类型:>, >=, < ...
分类:其他好文   时间:2021-05-04 16:04:10    阅读次数:0
Pandas-03-文件读取与存储
1. CSV 1.1. read_csv pandas.read_csv(filepath_or_buffer, sep=',') filepath_or_buffer:文件路径 usecols:列表,指定读取的列名 # 读取文件,并指定只获取open和close这两列 data = pd.read ...
分类:其他好文   时间:2021-05-04 16:03:35    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
92220条   上一页 1 ... 50 51 52 53 54 ... 9222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!