gpt4 book ai didi

python - 在列表python中拆分Mac地址

转载 作者:太空宇宙 更新时间:2023-11-04 07:49:44 24 4
gpt4 key购买 nike

我需要提取存储在 python 列表中的所有 Mac 地址的最后两位数。

['00:00:00:00:00:02',
'00:00:00:00:00:01',
'00:00:00:00:00:03',
'00:00:00:00:00:01',
'00:00:00:00:00:04',
'00:00:00:00:00:01']

我需要从这个列表中提取 [02,01,03,01,04,01]或者panda dataframe 中有这个方法吗?

最佳答案

macs = ['00:00:00:00:00:02', '00:00:00:00:00:01', '00:00:00:00:00:03', '00:00:00:00:00:01', '00:00:00:00:00:04', '00:00:00:00:00:01']
short_macs = [x[-2:] for x in macs]

输出

['02', '01', '03', '01', '04', '01']

关于python - 在列表python中拆分Mac地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56703965/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com