python

作者: 小小爱笑 | 来源:发表于2018-10-25 12:41 被阅读0次
  • 官方文档

https://docs.python.org/3.7/

中文文档:

http://www.pythondoc.com/pythontutorial3/appetite.html

  • aiohttp

https://aiohttp.readthedocs.io/en/stable/

问题记录

  • MySQL-python 不支持python3

https://www.cnblogs.com/wangyanhua95/p/7888926.html

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',) )

相关文章

网友评论

      本文标题:python

      本文链接:https://www.haomeiwen.com/subject/hebftqtx.html