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

2 Answers

0 votes
def move_special_characters_to_beginning(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 pecial_characters + chars
       
      
s = "c++£$vb.net&%java*() php <>/python 3.7.3"
       
print(move_special_characters_to_beginning(s))  
 
 
'''
run:
 
++£$.&%*()<>/..cvbnetjava php python 373
 
'''

 



answered Aug 14, 2019 by avibootz
0 votes
def move_special_characters_to_beginning(s: str) -> str:
    specials = ""
    chars = ""
    
    for ch in s:
        if ch.isalnum() or ch.isspace():
            chars += ch
        else:
            specials += ch
    
    return specials + chars


s = "c++20$c&^java*(rust) php <>/python 3.14.2"

print(move_special_characters_to_beginning(s))



'''
run:

++$&^*()<>/..c20cjavarust php python 3142

'''

 



answered Dec 13, 2025 by avibootz

Related questions

...