Contact: aviboots(AT)netvision.net.il
39,970 questions
51,912 answers
573 users
import textwrap s = 'python java c c++ rust' lst = textwrap.wrap(s, width=1) print(lst) ''' run: ['p', 'y', 't', 'h', 'o', 'n', 'j', 'a', 'v', 'a', 'c', 'c', '+', '+', 'r', 'u', 's', 't'] '''