“Dodaj przestrzeń przed i po String Python” Kod odpowiedzi

Dodaj przestrzeń przed i po String Python

using re adds white-space before and after the desired characters:

import re

pat = re.compile(r"([.()!])")
print (pat.sub(" \\1 ", string))
# hello .  .  .   ( world )  ! 
Santino

Dodaj przestrzeń przed i po String Python


import re

pat = re.compile(r"([.()!])")
print (pat.sub(" \\1 ", string))
# hello .  .  .   ( world )  ! 

Puzzled Peacock

Odpowiedzi podobne do “Dodaj przestrzeń przed i po String Python”

Pytania podobne do “Dodaj przestrzeń przed i po String Python”

Więcej pokrewnych odpowiedzi na “Dodaj przestrzeń przed i po String Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu