You ask for practical examples:
Example 1: List comprehension:
[x*2 | x<-[1..10], odd x]
This expressions returns the doubles of all odd numbers in the range from 1 to 10. Very useful!
Example 2: Input/Output:
do
putStrLn "What is your name?"
name <- getLine
putStrLn ("Welcome, " ++ name ++ "!")
Both examples uses monads. The common theme is that the monad chains operations in some specific, useful way. In the list comprehension, the operations are chained such that if an operation returns a list, then the following operations are performed on every item in the list. The IO monad OTOH performs the operations sequentially, but passes a "hidden variable" along, which represents "the state of the world", which allows us to write IO code in a pure functional manner.
It turns out the the pattern of chaining operations is quite useful, and is used for lots of different things in Haskell.
An other example is exceptions: Using the Error monad, operations are chained such that the are performed sequentially, except if an error is thrown, in which case the rest of the chain is abandoned.
Both the list-comprehension syntax and the do-notation are syntactic sugar for chaining operations using the >>= operator. A monad is basically just a type that supports the >>= operator.
Example 3: A parser
This is a very simple parser which parses either a quoted string or a number:
parseExpr = parseString <|> parseNumber
parseString = do
char '"'
x <- many (noneOf "\"")
char '"'
return (StringValue x)
parseNumber = do
num <- many1 digit
return (NumberValue (read num))
The operations char, digit etc. are pretty simple, they either match or dont match. The magic is the monad which manages the control flow: The operations are performed sequentially until a match fail, in which case the monad backtracks to the latest <|> and tries the next option. Again, a way of chaining operations with some additional, useful semantics.