Answers for "Simple example of python strip function"

-1

Simple example of python strip function

string = "softhunt.net"

print(string)

print(string.strip())

print(string.strip('softhunt'))
Posted by: Guest on April-10-2022

Code answers related to "Simple example of python strip function"

Python Answers by Framework

Browse Popular Code Answers by Language