如何在 BeautifulSoup 上打印指数单位
How to print exponential units on BeautifulSoup
我认为标题说明了一切。我有一个字符串,我想将它插入 Beautiful Soup document. I found the Exponent notation,但我不知道是否以及如何将它应用到我的案例中。
工作示例:
#!/usr/bin/python
from bs4 import BeautifulSoup
html_sample = """
<!DOCTYPE html>
<html><head lang="en"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body>
<div class="date">LAST UPDATE</div>
</body>
</html>
"""
si_unit = '3 m3/s'
soup = BeautifulSoup(html_sample)
forecast = soup.find("div", {"class": "date"})
forecast.string = si_unit
print(soup.prettify())
输出样本:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
</meta>
</head>
<body>
<div class="date">
3 m3/s
</div>
</body>
</html>
我的问题是 si 单位不是指数的。我怎样才能 convert/print 值 m(3)/s 作为指数?
有谁知道做这个棘手的操作吗?
预先感谢您的时间和精力。
更新: 根据给出的示例代码将输出从 2 m3/s 修改为 3 m3/s。
更新 2: 为我的问题添加了可行的解决方案,感谢 jumbopap。
更新 3: 修改解决方案。
更新 4: 我使用 ref Unicode Character 'SUPERSCRIPT THREE' (U+00B3) 的 Unicode 字符串,以防其他人需要它。
第一步根据字符串中间的白色space将字符串分成两部分。第二步,将所有字符从 si 单元部分(我们要修改指数的部分)拆分为一个列表。
第三次将所有字符连接成一个新字符串,以压入 BeautifulSoup.
工作代码示例:
from bs4 import BeautifulSoup
html_sample = """
<!DOCTYPE html>
<html><head lang="en"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body>
<div class="date">LAST UPDATE</div>
</body>
</html>
"""
si_unit = '3 m3/s'
unit, si_unit = si_unit.split()
si_unit_list = list(si_unit)
soup = BeautifulSoup(html_sample, 'html.parser')
forecast = soup.find("div", {"class": "date"})
forecast.string = unit + si_unit_list[0] + u"\u00B3" + si_unit_list[2] + si_unit_list[3]
print(soup.prettify())
以及产生的输出:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
</meta>
</head>
<body>
<div class="date">
3m³/s
</div>
</body>
</html>
在字符串中使用 superscript 3 character。你可以用 Beautiful soup 美化为 HTML 并输出它。
>>> html = '<p>2³</p>'
>>> soup = BeautifulSoup.BeautifulSoup(html, 'html.parser')
>>> out = soup.prettify(formatter="html")
>>> file('tmp.html', 'wb').write(out)
>>>
结果:
我认为标题说明了一切。我有一个字符串,我想将它插入 Beautiful Soup document. I found the Exponent notation,但我不知道是否以及如何将它应用到我的案例中。
工作示例:
#!/usr/bin/python
from bs4 import BeautifulSoup
html_sample = """
<!DOCTYPE html>
<html><head lang="en"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body>
<div class="date">LAST UPDATE</div>
</body>
</html>
"""
si_unit = '3 m3/s'
soup = BeautifulSoup(html_sample)
forecast = soup.find("div", {"class": "date"})
forecast.string = si_unit
print(soup.prettify())
输出样本:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
</meta>
</head>
<body>
<div class="date">
3 m3/s
</div>
</body>
</html>
我的问题是 si 单位不是指数的。我怎样才能 convert/print 值 m(3)/s 作为指数?
有谁知道做这个棘手的操作吗? 预先感谢您的时间和精力。
更新: 根据给出的示例代码将输出从 2 m3/s 修改为 3 m3/s。
更新 2: 为我的问题添加了可行的解决方案,感谢 jumbopap。
更新 3: 修改解决方案。
更新 4: 我使用 ref Unicode Character 'SUPERSCRIPT THREE' (U+00B3) 的 Unicode 字符串,以防其他人需要它。
第一步根据字符串中间的白色space将字符串分成两部分。第二步,将所有字符从 si 单元部分(我们要修改指数的部分)拆分为一个列表。 第三次将所有字符连接成一个新字符串,以压入 BeautifulSoup.
工作代码示例:
from bs4 import BeautifulSoup
html_sample = """
<!DOCTYPE html>
<html><head lang="en"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"></head>
<body>
<div class="date">LAST UPDATE</div>
</body>
</html>
"""
si_unit = '3 m3/s'
unit, si_unit = si_unit.split()
si_unit_list = list(si_unit)
soup = BeautifulSoup(html_sample, 'html.parser')
forecast = soup.find("div", {"class": "date"})
forecast.string = unit + si_unit_list[0] + u"\u00B3" + si_unit_list[2] + si_unit_list[3]
print(soup.prettify())
以及产生的输出:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
</meta>
</head>
<body>
<div class="date">
3m³/s
</div>
</body>
</html>
在字符串中使用 superscript 3 character。你可以用 Beautiful soup 美化为 HTML 并输出它。
>>> html = '<p>2³</p>'
>>> soup = BeautifulSoup.BeautifulSoup(html, 'html.parser')
>>> out = soup.prettify(formatter="html")
>>> file('tmp.html', 'wb').write(out)
>>>
结果: