Answers for "what is r strip function in python"

7

what is r strip function in python

#!/usr/bin/python

str = "     this is string example....wow!!!     ";
print str.rstrip()
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8')

#the answer

#this is string example....wow!!!
#88888888this is string example....wow!!!
Posted by: Guest on May-30-2020
2

function in python 3

#use the def keyword to declare a function in Python
def function(args,kwargs='attribute'):
    #here is the returned value
    return 'return value'
Posted by: Guest on March-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language