これが私がやろうとしていることです。その中に要素として文字列を含むリストがあります。今、私はそれを使って2つ以上のことをしたいと思いました。
- クラス内に空のリストを作成します。
- リスト内のすべての要素を操作して、作成したempytリストに追加します。
これまでの私のコード。
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でこれを構築するのを手伝ってくれるかどうかまだ疑問に思っています。