作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 f 字符串遍历数据帧
假设您有以下 df:
d = {'KvK': [0.21, 0.13, 0.1], 'line amount#2': [0.0, 0.05, .05], 'ExclBTW': [0.5, 0.18, .05]}
df = pd.DataFrame(data=d)
df
KvK line amount#2 ExclBTW
0 0.21 0.00 0.50
1 0.13 0.05 0.18
2 0.10 0.05 0.05
现在,我想将每个 KvK 值输入到 API 调用中。
for index, row in df.iterrows():
details = df(row)
f"https://api.kvk.nl/api/v2/search/companies?user_key=ldbb&q=f{row['KvK']}"
但是,这不起作用。
KvK line amount#2 ExclBTW APIoutput#1
0 0.21 0.00 0.50 0.21APIsampleAPIOutput
1 0.13 0.05 0.18 0.13APIsampleAPIOutput
2 0.10 0.05 0.05 0.10APIsampleAPIOutput
请帮忙!
最佳答案
d = {'KvK': [0.21, 0.13, 0.1], 'line amount#2': [0.0, 0.05, .05], 'ExclBTW': [0.5, 0.18, .05]}
df = pd.DataFrame(data=d)
url = f"https://api.kvk.nl/api/v2/search/companies?user_key=ldbb&q=f"
df['APIoutput'] = url + df['KvK'].astype(str)
关于python - 如何使用 f 字符串遍历数据帧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67369335/
我是一名优秀的程序员,十分优秀!