gpt4 book ai didi

Python:从导入的 css 文件中查找宽度

转载 作者:行者123 更新时间:2023-11-28 13:58:39 25 4
gpt4 key购买 nike

我想在 python 中查找导入的 CSS 文件中出现的宽度数。

我正在使用 file() 函数

    css = open("/Users/john/Work/html/Ribbon/header.css")  
print(css.read())
#output

#back {
width: 680px;
height: 280px;
border: 2px solid #000;
margin: 100px auto;
background: url("background.png");
position: relative;
}

#back ul {
margin-top: 115px;
margin-left: 80px;
width: 476px;
height: 39px;
border: 2px solid #b4c5cf;
background: #f3f8fa;
}

#back #topborder {
background: url("top_border.png");
position: absolute;
width: 100%;
height: 23px;

}

#back #bottomborder {
background: url("bottom_border.png");
width: 100%;
height: 23px;
bottom: 0;
position: absolute;
}

我是 python 新手,请建议更多方法。请帮助我,如何进一步进行。

谢谢。

最佳答案

我不是 100% 确定你在问什么,但如果你想计算你的 CSS 文件中 width: 定义的数量,那么你可以使用以下内容(非常简单)方法:

count = 0
with open('/Users/john/Work/html/Ribbon/header.css', 'r') as f:
for line in f:
if "width:" in line:
count+=1
print("Found %d instances of 'width:'." % count)

关于Python:从导入的 css 文件中查找宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10578916/

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