Skip to content

Latest commit

Β 

History

History
53 lines (41 loc) Β· 1.6 KB

File metadata and controls

53 lines (41 loc) Β· 1.6 KB

πŸŽ“ Modules

In this course, you'll learn about the fundamentals of functions and how to use them effectively in your code.

πŸ“₯ Importing Modules

To use a module in your Python program, you'll first need to import it. Here's how you can import a module:

import module_name

If you want to give the module a different name in your program, you can use the as keyword:

import module_name as my_module

You can also import specific functions or variables from a module:

from module_name import function_name, variable_name

πŸ› οΈ Creating and Using Modules

To create your own module, simply create a new .py file with your code and save it in the same directory as your main Python script. Then, you can import it just like any other module.

Here's an example of a simple module that defines a function:

# my_module.py

def say_hello():
    print("Hello, world!")

To use this module in your program, you can import it and call the function:

import my_module

my_module.say_hello()

πŸ“š Standard Libraries

Python comes with a set of standard libraries that provide useful functionality for a variety of tasks. Here are some examples: os: Operating system interfaces datetime: Date and time manipulation math: Mathematical functions random: Random number generation json: JSON encoding and decoding

To use a standard library module, you'll need to import it just like any other module:

import os

# Use os.path.join() to join file paths
file_path = os.path.join("path", "to", "file.txt")