Built-In Functions + Methods
12345678910111213141516171819202122
# 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)
Python
INFO