Built-In Functions + Methods
# Built-In Functions + Methods
greet = 'helllo'
print(greet[0:len(greet)])
# String Methods
quote = 'to be or not to be'
print(quote.upper())
print(quote.capitalize())
print(quote.find('be'))
print(quote.replace('be', 'me'))
print(quote)
INFO