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

51,811 answers

573 users

How to convert part of a string between two indexes to lowercase in Python

1 Answer

0 votes
def convert_part_to_lowercase(s, from_idx, to_idx) : 
    length = len(s) 
    if (from_idx < 0 or to_idx > length) : return s
    s = list(s)
  
    for i in range(length) : 
        if ((i >= from_idx and i <= to_idx) and (ord(s[i]) >= 65 and ord(s[i]) <= 90)):
            s[i] = chr(ord(s[i]) + 32)
     
    return "".join(s)

   
   
s = "PYTHON PROGRAMMING"
       
s = convert_part_to_lowercase(s, 3, 7);
print(s)

s = convert_part_to_lowercase(s, 11, 12);
print(s)       

 
 
'''
run:
 
PYThon pROGRAMMING
PYThon pROGraMMING
 
'''

 



answered Nov 16, 2019 by avibootz
...