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

51,817 answers

573 users

How to capitalize every 3rd letter in a string in Python

2 Answers

0 votes
s = "pythonisaninterpretedgeneralpurposeprogramminglanguage"

lst = list(s)

lst[2::3] = [ch.upper() for ch in lst[2::3]]
print(lst)

s = ''.join(lst)
 
print(s)
 

 
      
'''
run:
      
['p', 'y', 'T', 'h', 'o', 'N', 'i', 's', 'A', 'n', 'i', 'N', 't', 'e', 'R', 'p', 'r', 'E', 't', 'e', 'D', 'g', 'e', 'N', 'e', 'r', 'A', 'l', 'p', 'U', 'r', 'p', 'O', 's', 'e', 'P', 'r', 'o', 'G', 'r', 'a', 'M', 'm', 'i', 'N', 'g', 'l', 'A', 'n', 'g', 'U', 'a', 'g', 'E']
pyThoNisAniNteRprEteDgeNerAlpUrpOseProGraMmiNglAngUagE
  
'''

 



answered Nov 2, 2021 by avibootz
0 votes
s = "python is an interpreted general purpose programming language"

lst = list(s)

lst[2::3] = [ch.upper() for ch in lst[2::3]]
print(lst)

s = ''.join(lst)
 
print(s)
 

 
      
'''
run:
      
['p', 'y', 'T', 'h', 'o', 'N', ' ', 'i', 'S', ' ', 'a', 'N', ' ', 'i', 'N', 't', 'e', 'R', 'p', 'r', 'E', 't', 'e', 'D', ' ', 'g', 'E', 'n', 'e', 'R', 'a', 'l', ' ', 'p', 'u', 'R', 'p', 'o', 'S', 'e', ' ', 'P', 'r', 'o', 'G', 'r', 'a', 'M', 'm', 'i', 'N', 'g', ' ', 'L', 'a', 'n', 'G', 'u', 'a', 'G', 'e']
pyThoN iS aN iNteRprEteD gEneRal puRpoSe ProGraMmiNg LanGuaGe

'''

 



answered Nov 2, 2021 by avibootz
...