Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个功能:
def testfunction (x): blablblaalbal return c[1]
现在我有两个尚未合并的不同数据框。
x = [df1, df2]
如何在返回两个 c[1] 值的 x 上应用 testfunction?
此外,我想将这两个 c [1] 值保存到 csv 文档中。
使用内置地图功能
y = map(testfunction, x)
这会将函数应用于其中的testfunction每个项目x并返回结果列表。
testfunction
x