Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132922 views
License: OTHER
1
a = delayed(pd.read_csv)(filenames[0])
2
b = delayed(pd.read_csv)(filenames[1])
3
c = delayed(pd.read_csv)(filenames[2])
4
na = delayed(len)(a)
5
nb = delayed(len)(b)
6
nc = delayed(len)(c)
7
total = delayed(sum)([na, nb, nc])
8
9