async with conn.cursor() as cur: count = await cur.execute("select * from user") if count: r = await cur.fetchall() for i in r: print(i) ...
確定! 回上一頁