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,961 questions

51,903 answers

573 users

How to print string letters include indexes in Python

1 Answer

0 votes
s = "Python programming"

for i in range(len(s)):
    print("index: %d char: %c" %(i, s[i]))
    
    
    
'''
run:

index: 0 char: P
index: 1 char: y
index: 2 char: t
index: 3 char: h
index: 4 char: o
index: 5 char: n
index: 6 char:  
index: 7 char: p
index: 8 char: r
index: 9 char: o
index: 10 char: g
index: 11 char: r
index: 12 char: a
index: 13 char: m
index: 14 char: m
index: 15 char: i
index: 16 char: n
index: 17 char: g

'''

 



answered Jun 30, 2021 by avibootz

Related questions

...