Guest User

Untitled

a guest
Jun 17th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // g100pon #26 文字列を分割してListに変換
  2. assert 'This is a pen'.tokenize() == ['This', 'is', 'a', 'pen']
  3. assert '東京/大阪/名古屋/仙台'.tokenize('/') == ['東京', '大阪', '名古屋', '仙台']
Add Comment
Please, Sign In to add comment