In Python, you can import packages to use their functionalities by using the import statement. You can either import the entire package, specific functions or classes from the package, or use aliases to simplify package names. Additionally, you can import all contents of a package, though this is generally discouraged due to potential conflicts between names.