Answers for "how to strip part of srt python"

12

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
Posted by: Guest on April-07-2020
2

remove a part of a string python

url = 'abcdc.com'
print(url.replace('.com',''))
Posted by: Guest on July-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language