Home / Python Modules / How to Import and Use Built-in Modules in Python In this example we will show how to import and use the built-in modules in Python. Source Code import sys # import and use the sys module p = sys.platform print(p) Output: win32