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

51,870 answers

573 users

How to convert a list lowercase characters to uppercase and uppercase to lowercase with Python

1 Answer

0 votes
def flip_characters(l) : 
    length = len(l) 

    for i in range(length) : 
        if (ord(l[i]) >= 65 and ord(l[i]) <= 90) : 
            l[i] = chr(ord(l[i]) + 32)
        else :
            if (ord(l[i]) >= 97 and ord(l[i]) <= 122) : 
                l[i] = chr(ord(l[i]) - 32)
    return l
 
 
 
l = list("pyThon PROGrAMMINg")
       
l = flip_characters(l);

print(l) 
 
 
 
'''
run:
 
['P', 'Y', 't', 'H', 'O', 'N', ' ', 'p', 'r', 'o', 'g', 'R', 'a', 'm', 'm', 'i', 'n', 'G']
 
'''

 



answered Nov 11, 2019 by avibootz
...