How to move all special characters to the end of a string in Python

1 Answer

0 votes
def move_special_characters_to_end(s):  

    length = len(s) 
  
    chars, pecial_characters = "", ""  
    for i in range(0, length):  
        ch = s[i]  
        if ch.isalnum() or ch == " ":  
            chars = chars + ch  
        else: 
            pecial_characters = pecial_characters + ch  
          
    return chars + pecial_characters
      
     
s = "c++£$vb.net&%java*() php <>/python 3.7.3" 
      
print(move_special_characters_to_end(s))  


'''
run:

cvbnetjava php python 373++£$.&%*()<>/..

'''

 



answered Aug 12, 2019 by avibootz

Related questions

1 answer 177 views
2 answers 346 views
2 answers 333 views
2 answers 291 views
1 answer 362 views
1 answer 268 views
...