线性回归 房价预测 跟着李沐的动手学深度学习,跟着写了一遍房价预测的处理和预测,加了一些注释,同时稍微改动了一些地方 import hashlib import os import tarfile import zipfile import requests DATA_HUB = dict() DA ...
分类:
其他好文 时间:
2021-06-19 18:54:00
阅读次数:
0
redis学习 五大数据类型,开发必会的技能 老师的博客 https://www.cnblogs.com/pyyu/p/9467279.html string,字符串类型 hash,哈希类型,如同python的dict Set,无序集合 Zset,有序集合 List,双向队列,向左插入数据,向右插入 ...
分类:
其他好文 时间:
2021-06-19 18:53:25
阅读次数:
0
json.dumps :把字典转换成字符串 #在python中字典就是json对象 import jsonstr_dict={"name":"xiaoming","age":"18"} #json.dumps :把字典转换成字符串 str1=json.dumps(str_dict) print(ty ...
分类:
Web程序 时间:
2021-06-19 18:52:06
阅读次数:
0
代码实现顺序: 按行读取 按列读取 满足if条件 单元格值赋值给字典 实现代码: datas = []# 定义一个空列表 for i in range (3,nrows): sheet_data={}# 定义一个空字典 for j in range(ncols): c_type=table.cell ...
分类:
编程语言 时间:
2021-06-18 18:48:16
阅读次数:
0
2152 数字组合 现在小瓜有1到n这n个整数,他想知道用这n个整数组成一个长度为n的数字序列的所有方法(每个整数可以重复使用)。你能帮助他吗? 输入 一行一个整数n(1<=n<=6)。 输出 若干行,每行表示用1到n组成一个长度为n的数字序列的一种方法。所有方法按字典序输出。 输入样例 2 输出样 ...
分类:
其他好文 时间:
2021-06-17 17:14:39
阅读次数:
0
使用:pymysql.cursors.DictCursor 直接上代码 import pymysql db = pymysql.connect(host = "host", user = "user", password = "password", database = "database") cu ...
分类:
数据库 时间:
2021-06-16 18:09:26
阅读次数:
0
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net.Sockets; using Sy ...
分类:
其他好文 时间:
2021-06-16 18:02:41
阅读次数:
0
1. vars vars(objcet) 函数返回对象object的属性和属性值的字典对象 def test(a, b): # {'a': 10, 'b': 20} 常用打印函数的所有入参 print(vars()) return a + b if __name__ == '__main__': t ...
分类:
编程语言 时间:
2021-06-16 17:51:29
阅读次数:
0
'''模板层 {{ 变量名 }} {{ 逻辑 }} 后端传值 from django.shortcuts import render return render(request, '.html', locals()/{'前端调用变量名': 后端变量名}, content_type='', statu ...
分类:
其他好文 时间:
2021-06-16 17:37:55
阅读次数:
0
写在前边: list和tuple都是有序的,取值方式如list[1],tuple[1]。 list列表,是一种可变序列 tuple元组,是一种不可变序列,初始化后就不能修改 dict和set都是无序的。 dict字典,等同于map。dict存储键值对,如dict1 = {"key":"value"} ...
分类:
编程语言 时间:
2021-06-15 18:53:57
阅读次数:
0