我试图使用openpyxl在一个单元中存储一个有效的ip地址列表。目前,数据被简单地放入一个单元中,通常会溢出到其他单元中。使用以下代码:# Regex to return a tidy list of ip addresses in that block
"""
r = row to be checked
s = source or destination columns
iptc = ips to check
"""
def regex_ips(r, s):
iptc = ['165.11.14.20', '166.22.24.0/24', '174.68.19.11', '165.211.20.0/23']
if r is not None:
if s is not None:
iptc = str(sheet.cell(r, s).value)
san = re.sub('\n', ', ', iptc)
sheet_report.cell(r, 8).value = san
然而,我更希望我能把这些ip地址放在一个下拉列表中,因为这样更容易阅读-所以我的问题有两个,第一,这能做到吗?因为我找不到关于它的任何信息,第二,有没有更好的方法来显示数据而不溢出呢?在
谢谢你读过这个
编辑:添加了一些示例地址和子网,以反映列表中的内容。在