python 函数参数可以为普通参数,列表,字典,看到 sqlalchemy 里面参数为 user_table.c.id == 5 这种检索方式,请问这是什么形式的语法?
1
n121 2019-12-14 21:53:03 +08:00 2
Python 可以重载操作符,user_table.c.id == 5 等于 user_table.c.id.__eq__(5)
|