python
2018-10-25 本文已影响0人
小小爱笑
- 官方文档
中文文档:
- aiohttp
问题记录
- MySQL-python 不支持python3
raise ProgrammingError("execute() first")
async with self.application.db.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute('select * from tbl_cfs_import_task')
rs = await cur.fetchall()
忘记加 await
- 函数 的 tuple类型参数, 只有一个元素的tuple , 需要使用 (‘Hello', )
def fun(argv=()):
for v in argv:
print(v)
fun('Hello')
fun( ('Hello',) )