在c#中有类似的东西吗?
with(myPoint)
{
X=10;
Y=10;
}
相当于
myPoint.X=10;
myPoint.Y=10;
答案 0 :(得分:1)
你可以这样做:
comment
只需将soup = BeautifulSoup(html,'html.parser')
s = soup.findAll('div', {'class': 's'})
for result in s:
site = result.find('cite')
comment = result.find('span', {'class': 'st'})
print site.text#Grab text
print comment.text
替换为您选择的积分类。但是,有些只使用构造函数:
myPoint = new Point() { X = 10, Y = 10 };