text = "Some not interesting text input"
-words = text.split(" ")
-words
-for word in words:
- print(word)
-"The lazy fox jumps over the lazy dog".split("the")
-len("Hello")
-len(words)
-len(words[0])
-"text" in words
-text.count("text")
-long_words = [word for word in words if len(word) > 4]
-long_words
-"Hello".title()
-capitals = [word for word in words if word.istitle()]
-capitals
-"Adam".upper()
-"Adam".lower()
-text = "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s , when an unknown printer took a galley of type and scrambled it to make a type specimen book ."
-len(set(text.split(" ")))
-
-