How to uppercase the third letter of each word in Python

1 Answer

0 votes
def capitalize_i(s, i):
    return " ".join(word[:i] + word[i:].capitalize() for word in s.split())
 
s = "python isan interpreted general purpose programming language"
 
print(capitalize_i(s, 2))
 
  
 
 
 
      
'''
run:
      
pyThon isAn inTerpreted geNeral puRpose prOgramming laNguage
  
'''

 



answered Nov 2, 2021 by avibootz
...