print(len('hellloooo')) #len starts with 1
greet = 'hellloooo'
print(greet[:len(greet)])
# Methods similar to functions but they own sth
####################
quote = 'to be or not to be'
print(quote.upper()+' /upper cases only')
print(quote.capitalize()+' /capitalize')
print(quote.lower()+" /lower")
print(str(quote.find('be'))+' /find')
print(quote.replace('be','me')+' /replace')
print(quote)
int()
print()