Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

Attaching a sage script - Sage worksheet works, but its Jupyter notebook version no.

Project: ZMF2018
Views: 123
1
def roundlist(xlist, digits):
2
return map(lambda element: round(element,digits), xlist)
3