Introduction
Import aliasing lets you use a shorter or easier name for a module or function you bring into your program. This makes your code cleaner and faster to write.
When a module name is very long and you want to type less.
When two modules have the same name and you want to avoid confusion.
When you want to give a module or function a name that fits your program better.
When you want to keep your code neat and easy to read.