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

51,912 answers

573 users

How to convert a character inside string to uppercase in Python

1 Answer

0 votes
def char_to_uppercase(s, idx) : 
    length = len(s) 
    if (idx < 0 or idx > length): return s
    s = list(s)
 
    for i in range(length) : 
        if (i == idx and (ord(s[i]) >= 97 and ord(s[i]) <= 122)):
            s[i] = chr(ord(s[i]) - 32)
    
    return "".join(s)
  
  
  
s = "python programming"
      
s = char_to_uppercase(s, 4)
print(s)
      
s = char_to_uppercase(s, 0);
print(s)
       
s = char_to_uppercase(s, len(s) - 1);
print(s)




'''
run:

pythOn programming
PythOn programming
PythOn programminG

'''

 



answered Nov 15, 2019 by avibootz

Related questions

1 answer 149 views
2 answers 179 views
1 answer 183 views
4 answers 283 views
1 answer 155 views
...