The "import" keyword in Python is used to bring in external modules or libraries into your code. It allows you to access pre-existing functionality and use it in your program.
Related terms
Module: A module is a file containing Python definitions and statements that can be imported and used in other programs.
Library: A library is a collection of modules that provides specific functions or services which can be utilized by programmers.
Package: A package is a way of organizing related modules into separate directories, making it easier to manage and import multiple modules together.