How to split a string and build a list with connected words (1 word, 1-2 words, 1-2-3 words, ...) in Python

1 Answer

0 votes
s = "python-java-c++-php"
   
lst = s.split('-') 
  
result = [] 
  
for s in range(len(lst)): 
    tmp = lst[:s + 1] 
    tmp = "-".join(tmp) 
    result.append(tmp) 
  
print(result) 

 
  
 
'''
run:
 
['python', 'python-java', 'python-java-c++', 'python-java-c++-php']
 
'''

 



answered Dec 28, 2019 by avibootz
...