String Assignment - 01
Argument: An argument is a value that is passed to a function when it is called. It might be a variable,
value or object passed to a function or method as input. Information can be passed into functions as
arguments.
Arguments are specified after the function name, inside the parentheses.
Return Value: In Python, the return value of a function is the data or object that the function sends back to
the part of the code that called it upon its completion. The primary purpose of a return value is to allow a
function to compute a result and make that result available for further use in the program.
A return statement is used to end the execution of the function call and it "returns" the value of the
expression following the return keyword to the caller.
Function Return Type Number of Arguments accepted
len()
title()
lower()
upper()
Capitalize()
istitle()
islower()
isupper()
isalnum()
isspace()
isdigit()
count()
find()
index()
endswith()
startswith()
lstrip()
rstrip()
strip()
replace()
join()
partition())
split()