vim replace tabs with spaces
" Vi:
" To replace tabs with spaces whilst typing
set tabstop=4 shiftwidth=4 expandtab
vim replace tabs with spaces
" Vi:
" To replace tabs with spaces whilst typing
set tabstop=4 shiftwidth=4 expandtab
python pad punctuation with spaces
# Basic syntax using regex:
import re
re.sub('characters_to_pad', r' \1 ', string_of_characters)
# Where you can specify which punctuation characters you want to pad in
# characters_to_pad
# Example usage:
import re
your_string = 'bla. bla? bla.bla! bla...' # An intelligent sentence
your_string = re.sub('([.,!()])', r' \1 ', your_string)
# your_string is updated in place
print(your_string)
--> bla . bla? bla . bla ! bla . . .
# Notice that the '?' didn't have spaces added because it wasn't listed
# among the characters_to_pad in the above function
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us