Python
1s = ['Executes and writes portions of testing plans protocols and documentation for assigned portion of application identifies and debugs issues with code and suggests changes or improvements', 'Maintain Network Performance by assisting with configurations and connections', 'Supports the regional compliance manager with day-to-day compliance support to assist the business and other stakeholders', 'Keep up to date with local and national business and economic issues', 'Assist with Service Organization Control (SOC) examinations']
上記のように、文字列が要素となるリストがあります。
そして、
Python
1def tokenizer(text): 2 return text.split() 3tokenizer(s[0])
と入力することで
['Executes', 'and', 'writes', 'portions', 'of', 'testing', 'plans', 'protocols', 'and', 'documentation', 'for', 'assigned', 'portion', 'of', 'application', 'identifies', 'and', 'debugs', 'issues', 'with', 'code', 'and', 'suggests', 'changes', 'or', 'improvements'] ``` という出力になることは分かりました。 ですが、これをリスト全体に適用するためにはどうすればいいのでしょうか。調べてもわからなかったので、質問させてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/10 12:10