For sqlalchemy, Who can gently give simple examples of SQL functions like sum, average, min, max, for a column (score in the following as an example).
As for this mapper:
class Score(Base):
#...
name = Column(String)
score= Column(Integer)
#...