How to uppercase the second 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 is an interpreted general purpose programming language"

print(capitalize_i(s, 1))

 



     
'''
run:
     
pYthon iS aN iNterpreted gEneral pUrpose pRogramming lAnguage
 
'''

 



answered Nov 2, 2021 by avibootz
...