Skip to content

hongtaoh/htpymodule

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Sample Simple Python Module

This package provides a very simple example module with basic arithmetic operations.

Installation

You can install the package locally:

git clone https://github.com/hongtaoh/htpymodule
pip install .

or through PyPI:

pip install htpymodule

Usage

from htpymodule import add, subtract, multiply, divide

print(add(1, 2))         # Output: 3
print(subtract(5, 3))    # Output: 2
print(multiply(4, 2))    # Output: 8
print(divide(10, 2))     # Output: 5.0

About

a sample simple python package

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published