pandas中,新增一列,如何更好的实现数值型ip到字符型ip的转换
请问,在pandas中,还有没有更好用的方法,来新增一列,实现数值型ip向字符型ip的转换
以下是我现在使用的方法,效率好低。
import pandas as pd
def num2ip(num):
return '%s.%s.%s.%s' % (
(num & 0xff000000) >> 24, (num & 0x00ff0000) >> 16, (num & 0x0000ff00) >> 8, (num & 0x000000ff)
)
# 整型ip和掩码
df = pd.DataFrame(
{
'ip_int': [1743822008, 1743822009, 2405182367, 2405182368],
'mask': [32, 32, 32, 32]
}
)
# 新增列,ip_f
IP = df.ip_int.values
ip_f = []
for ip in IP:
ip_f.append(num2ip(ip))
seri_ip = pd.Series(ip_f)
df.loc[:,"ip_f"] = seri_ip
print(df)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pandas 里有可以接受函数的方法
apply
不需要自己写循环