Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to get the indexes of all characters occurrences in string with Python

1 Answer

0 votes
import re  

s = 'python java php'
  
st = set(s.replace(' ', '')) 

result = {e: [sub.start() for sub in re.finditer(e, s)] for e in st} 
  
print(result) 
print(result['p']) 
print(result['a']) 
 
          
       
'''
run:

{'y': [1], 'p': [0, 12, 14], 'h': [3, 13], 'a': [8, 10], 'n': [5], 
't': [2], 'v': [9], 'j': [7], 'o': [4]}

[0, 12, 14]
[8, 10]
       
'''

 



answered Apr 26, 2020 by avibootz
edited Apr 26, 2020 by avibootz
...