How to uppercase the first and second letter of each word in Python

1 Answer

0 votes
def capitalize_first_i(s, i):
    return " ".join(word[:i].capitalize() + word[i:].capitalize() for word in s.split())
 
 
s = "python is an interpreted general purpose programming language"
 
print(capitalize_first_i(s, 1))
 
  
 
 
 
      
'''
run:
      
PYthon IS AN INterpreted GEneral PUrpose PRogramming LAnguage
  
'''

 



answered Nov 2, 2021 by avibootz

Related questions

...