What is the SQLAlchemy equivalent of MySQL's ROUND(n,x)?
ROUND(n,x)
SQLAlchemy allows producing (almost) any SQL function expression using the func utility:
func
func.round(n, x)