gpt4 book ai didi

python - 使用 python 选择文本的特定部分

转载 作者:行者123 更新时间:2023-12-02 07:45:08 25 4
gpt4 key购买 nike

from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
import numpy as np
import pandas as pd


my_url = 'https://sg.finance.yahoo.com/quote/S63.SI/history?p=S63.SI'


uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()

# html parsing
page_soup = soup(page_html, "html.parser")

item = container.findAll("td", {"class":"D(ib) Fz(18px)"})
print(item.text)

输出

新加坡科技工程有限公司 (S63.SI)

我只需要获取 S63.SI 来过滤我的输出,这样它就不会给出上面看到的其余输出?

最佳答案

这是一种不使用 RegEX 的方法:

text = "Singapore Technologies Engineering Ltd (S63.SI)"

ib = text[text.find("(")+1:text.find(")")]

print(ib)

输出:

S63.SI

关于python - 使用 python 选择文本的特定部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61500190/

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