delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
python strip characters
# Python3 program to demonstrate the use of
# strip() method
string = " python strip method test "
# prints the string without stripping
print(string)
# prints the string by removing leading and trailing whitespaces
print(string.strip())
# prints the string by removing strip
print(string.strip(' strip'))
Output:
python strip method test
python strip method test
python method test
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