码迷,mamicode.com
首页 >  
搜索关键字:with_items    ( 3511个结果
发现个利器--FastAPI(Py3.6+版本)
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i ...
分类:Windows程序   时间:2020-06-28 09:25:20    阅读次数:83
分享 HT 实用技巧:实现指南针和 3D 魔方导航
三维场景时常需要一个导航标识,用来确定场景所处的方位。一般有两种表现形式:指南针、小方盒(方位魔方)。参考一下百度百科中的 maya 界面,可以看到右上角有一个标识方位的小盒子。Hightopo 的 HT for Web 产品可以很方便地构造轻量化的 3D 可视化场景,在 web 端 我们可以利用 ... ...
分类:其他好文   时间:2020-06-28 00:18:37    阅读次数:116
关于eclipse安装spring插件报错An error occurred while collecting items to be installed...解决方案
解决报错 automatic updates download has encountered a problem an error occurred while collecting itens to be installed 在线安装 打开eclipse->Help->Install new s ...
分类:编程语言   时间:2020-06-27 12:05:36    阅读次数:123
Python就业班——Python基础知识——考试——货币兑换系统(慕K)
业务需求货币兑换系统》》$1>¥6.72》》¥1>€0.131、循环输出系统2、字典定义变量service_menu存储货币转换的四种服务: 2.1、人民币换美元 2.2、美元换人民币 2.3、人民币换欧元 2.4、退出3、使用items()函数返回变量service_menu中的键值数据,并以键值 ...
分类:编程语言   时间:2020-06-27 00:28:06    阅读次数:135
Python就业班——Python基础知识
#!/usr/bin/env python3 # coding=utf-8 # Version:python3.6.1 __date__ = '2020/5/23 10:21' __author__ = 'Lgsp_Harold' # account = "888888" # amt = 12345 ...
分类:编程语言   时间:2020-06-26 23:52:06    阅读次数:77
dict遍历的时候删除dict中的值报错RuntimeError: dictionary changed size during iteration
遇到的error,当遍历字典的时候修改字典数据会报错,例如 temp = {'name': 'Mike', 'age': '25', 'shengao': 180, 'weight': 80} for key,value in temp.items(): del temp[key] #Runtime ...
分类:其他好文   时间:2020-06-25 19:20:31    阅读次数:67
python删除字典a中value为0的元素或对象
字典dict中某些特定值删除的简单代码 以下字典,在python 3 版本以上,以字典a举例,删除value为0的键值对(或元素),其他比如:删除key中包含哪些值的键值对 简单写下: 1.第一种用zip() 函数,for循环遍历a种的所有keys和values,attend两个列表 a = {1: ...
分类:编程语言   时间:2020-06-24 17:46:38    阅读次数:105
Fastapi学习日记
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello":"Word"} @app.get("/items/{item_id}") def read_item(item_id: ...
分类:Windows程序   时间:2020-06-24 14:08:16    阅读次数:134
Scrapy多个spider情况下pipline、item设置
一、Scrapy总只有一个spider(大多数情况) items设置 class UserInfoItem(scrapy.Item): uid = scrapy.Field() # 用户ID name = scrapy.Field() # 用户名 general = scrapy.Field() # ...
分类:其他好文   时间:2020-06-24 12:17:44    阅读次数:46
1095 Cars on Campus (30分)(排序)
1095 Cars on Campus (30分) Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers ...
分类:编程语言   时间:2020-06-24 00:20:12    阅读次数:73
3511条   上一页 1 ... 12 13 14 15 16 ... 352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!