Guest User

Untitled

a guest
Mar 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # 空要素を削除
  2. pieces = [x for x in pieces if x != '']
  3.  
  4. # すべての要素の'▁'を削除
  5. pieces_tmp = []
  6. for token in pieces:
  7. token = token.replace('▁' ,'')
  8. pieces_tmp.append(token)
  9. pieces = pieces_tmp
Add Comment
Please, Sign In to add comment