这是我想要做的。我有一个包含字符串作为元素的列表。现在我想用它做两件事以上。
- 在类内创建空列表。
- 对列表中的每个元素进行操作,然后将其添加到我创建的空列表中。
到目前为止我的代码。
class aer(object):
def __init__(self):
self.value = []
def rem_digit(self,s):
self.value.append(re.sub(" \d+"," ",s))
def to_lower(self,s):
self.value.append(self.s.lower())
如果有人能指出我所犯的错误,那就太好了。以及如何访问我在课堂上制作的“列表”。
样品清单:
mki = ["@tenSjunkie We're sorry for the inconvenience. Please call the Guest Service Desk using this link http://t.co/8Zv8DFwbbu and your receipt.",
"@lindz_h We're sorry for the inconvenience. Please call the Guest Service Desk using this link http://t.co/Ak9fnazHZN and your receipt."]
比上次有所改进,或者说我在 CLASS 面前被打败了
def some_mani(old_list):
new_list = []
for i in range(0,len(old_list)):
new_list.append(re.sub(" \d+"," ",old_list[i]).lower())
return new_list
我仍然想知道是否有人帮助我在 CLASS 中构建它。