If you're working on optimising real-time or high performance applications (such as video games), it's very handy to be able to read assembler, even if you don't write any. Most of the time it's fine to trust the compiler, but if you've got an inner loop that's a bottleneck, it can be worth double checking.
These days, in application programming, if you need to work close to the metal (for example, writing your own high performance maths library or lock-free data structures) you'll probably be mostly using intrinsics rather than writing assembler. But to do this effectively, it's good to have an understanding what's happening under the hood.
To get to a good reading understanding of assembler, check out Berkeley's course notes on MIPS. IBM has some good info on PowerPC too.
