copyme.module#
{Short module description (1-3 sentences)} todo docstring
Features#
todo docstring
{feature 1}
{feature 2}
{feature 3}
{etc}
Overview#
todo docstring {Overview description}
Examples#
todo docstring {Examples in rST}
Print a message
# print message
print("Hello world!")
# [Output] >> 'Hello world!'
Functions
Classes
|
- copyme.module.add(num1, num2)[source]#
Add two numbers
- Parameters:
num1 (int or float) – number 1
num2 (int or float) – number 2
- Returns:
sum of numbers
- Return type:
int or float
Examples
>>> add(2, 3) 5
>>> add(20, 2.3) 22.3