from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i ...
三维场景时常需要一个导航标识,用来确定场景所处的方位。一般有两种表现形式:指南针、小方盒(方位魔方)。参考一下百度百科中的 maya 界面,可以看到右上角有一个标识方位的小盒子。Hightopo 的 HT for Web 产品可以很方便地构造轻量化的 3D 可视化场景,在 web 端 我们可以利用 ... ...
分类:
其他好文 时间:
2020-06-28 00:18:37
阅读次数:
116
解决报错 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
业务需求货币兑换系统》》$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
#!/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
遇到的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
字典dict中某些特定值删除的简单代码 以下字典,在python 3 版本以上,以字典a举例,删除value为0的键值对(或元素),其他比如:删除key中包含哪些值的键值对 简单写下: 1.第一种用zip() 函数,for循环遍历a种的所有keys和values,attend两个列表 a = {1: ...
分类:
编程语言 时间:
2020-06-24 17:46:38
阅读次数:
105
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello":"Word"} @app.get("/items/{item_id}") def read_item(item_id: ...
一、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分) 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