waitress Documentation v3.0.1
0 码力 | 55 页 | 56.36 KB | 1 年前3waitress Documentation v3.0.1
0 码力 | 119 页 | 339.46 KB | 1 年前3python3学习手册
python3学习手册 简介: Python官网: h�ps://www.python.org Python由Guido van Rossum于1989年底发明,于1991年发行第一版, Python源代码遵循GPL协议 Python是一种解释型、面向对象、动态数据类型、可交互的语言 python2.0于2000-10-16发布,于2020年1月1日停止更新2.x版本, Python-2.7成为最后一个py dictx = {"k1": "v1", "k2": "v2", "k3": "v3"} for key in dictx.keys(): print(key, "-------->", dictx[key]) ②遍历value dictx = {"k1": "v1", "k2": "v2", "k3": "v3"} for value in dictx.values(): print(value) print(value) ③遍历item dictx = {"k1": "v1", "k2": "v2", "k3": "v3"} for k, v in dictx.items(): print(k, "---->", v) ★list/set/dic�onary增删改查操作 ①list数据操作(有序,数值可重复) listxx.append(x)0 码力 | 213 页 | 3.53 MB | 1 年前3PyMuPDF 1.12.2 documentation
under GNU GPL V3 (or later, at your choice). MuPDF is distributed under a separate license, the GNU AFFERO GPL V3. Both licenses apply, when you use PyMuPDF. Note Version 3 of the GNU AFFERO GPL is a lot0 码力 | 387 页 | 2.70 MB | 1 年前3Python 标准库参考指南 2.7.18
by a tuple, and the fields depend on the address type. The general tuple form is (addr_type, v1, v2, v3 [, scope]), where: • addr_type 取 TIPC_ADDR_NAMESEQ、TIPC_ADDR_NAME 或 TIPC_ADDR_ID 中的一个。 • scope 取 TIPC_ADDR_NAME,那么 v1 是服务器类型,v2 是端口标识符,v3 应为 0。 如果 addr_type 为 TIPC_ADDR_NAMESEQ,那么 v1 是服务器类型,v2 是端口号下限,而 v3 是端口号上 限。 如果 addr_type 为 TIPC_ADDR_ID,那么 v1 是节点 (node),v2 是 ref,v3 应为 0。 All errors raise exceptions Home page of nmh, an updated version of the original mh. MH & nmh: Email for Users & Programmers A GPL-licensed book on mh and nmh, with some information on the mailbox format. 18.4. mailbox —Manipulate0 码力 | 1552 页 | 7.42 MB | 9 月前3Python 标准库参考指南 2.7.18
by a tuple, and the fields depend on the address type. The general tuple form is (addr_type, v1, v2, v3 [, scope]), where: • addr_type 取 TIPC_ADDR_NAMESEQ、TIPC_ADDR_NAME 或 TIPC_ADDR_ID 中的一个。 • scope 取 TIPC_ADDR_NAME,那么 v1 是服务器类型,v2 是端口标识符,v3 应为 0。 如果 addr_type 为 TIPC_ADDR_NAMESEQ,那么 v1 是服务器类型,v2 是端口号下限,而 v3 是端口号上 限。 如果 addr_type 为 TIPC_ADDR_ID,那么 v1 是节点 (node),v2 是 ref,v3 应为 0。 All errors raise exceptions Home page of nmh, an updated version of the original mh. MH & nmh: Email for Users & Programmers A GPL-licensed book on mh and nmh, with some information on the mailbox format. 18.4. mailbox —Manipulate0 码力 | 1552 页 | 7.42 MB | 9 月前3Python 标准库参考指南 2.7.18
by a tuple, and the fields depend on the address type. The general tuple form is (addr_type, v1, v2, v3 [, scope]), where: • addr_type 取 TIPC_ADDR_NAMESEQ、TIPC_ADDR_NAME 或 TIPC_ADDR_ID 中的一个。 • scope 取 TIPC_ADDR_NAME,那么 v1 是服务器类型,v2 是端口标识符,v3 应为 0。 如果 addr_type 为 TIPC_ADDR_NAMESEQ,那么 v1 是服务器类型,v2 是端口号下限,而 v3 是端口号上 限。 如果 addr_type 为 TIPC_ADDR_ID,那么 v1 是节点 (node),v2 是 ref,v3 应为 0。 All errors raise exceptions Home page of nmh, an updated version of the original mh. MH & nmh: Email for Users & Programmers A GPL-licensed book on mh and nmh, with some information on the mailbox format. 18.4. mailbox —Manipulate0 码力 | 1552 页 | 7.42 MB | 9 月前3PyConChina2022-深圳-python分析alpha vaults策略-代少飞
三、使用说明 四、策略回测 大纲 策略介绍 资金量有一定规模,进出中心化交易所,比较费力 第一个上线的 Uniswap v3 LP 策略 Uniswap v3 在 2021 年 5 月 5 日发布后两天,Charm 部署了其第三款 产品:Uniswap v3 LP 操作策略——Alpha Vault,并且已经被证明是非常 成功的产品:利润比 v2 的 LP 高两倍以上! 部署开发 Brownie0 码力 | 18 页 | 2.12 MB | 1 年前3peewee Documentation Release 3.6.0
>>> KV.update(value=KV.value.update({'k2': 'v2', 'k3': 'v3'})).execute() 1 >>> KV.get(KV.key == 'a').value {'k1': 'v1', 'k2': 'v2', 'k3': 'v3'} We can also update existing data atomically, or remove [Row(key='k0', value='v0'), Row(key='k19', value='v19'), Row(key='k2', value='v2'), Row(key='k3', value='v3'), Row(key='k9', value='v9')] Attempting to get a single non-existant key will result in a KeyError KV.update(k2='v2', k3='v3') # Getting values works as you'd expect. assert KV['k2'] == 'v2' # We can also do this: for value in KV[KV.key > 'k1']: print(value) # 'v2' # 'v3' # Update multiple values0 码力 | 377 页 | 399.12 KB | 1 年前3peewee Documentation Release 3.6.0
>>> KV.update(value=KV.value.update({'k2': 'v2', 'k3': 'v3'})).execute() 1 >>> KV.get(KV.key == 'a').value {'k1': 'v1', 'k2': 'v2', 'k3': 'v3'} We can also update existing data atomically, or remove [Row(key='k0', value='v0'), Row(key='k19', value='v19'), Row(key='k2', value='v2'), Row(key='k3', value='v3'), Row(key='k9', value='v9')] Attempting to get a single non-existant key will result in a KeyError the value for "k1". KV['k1'] = 'v1' # Set (or update) multiple keys at once. KV.update(k2='v2', k3='v3') # Getting values works as you'd expect. assert KV['k2'] == 'v2' # We can also do this: for value0 码力 | 302 页 | 1.02 MB | 1 年前3
共 60 条
- 1
- 2
- 3
- 4
- 5
- 6