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

51,876 answers

573 users

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

...