Skip to content

Latest commit

 

History

History
103 lines (67 loc) · 1.04 KB

DOCS.md

File metadata and controls

103 lines (67 loc) · 1.04 KB

These are the Official Docs for the techdevutil library

How to install

Linux/macOS
python3 -m pip install techdevutil
Windows
py -3 -m pip install techdevutil

Then in the project do:

from techdevutil import <the module>

Functions

add_numbers

How to use:

add_numbers(num1,num2)

Print Example:

print(add_numbers(num1,num2))

subtract_numbers

How to use:

subtract_numbers(num1,num2)

Print Example:

print(subtract_numbers(num1,num2))

multiply_numbers

How to use:

multiply_numbers(num1,num2)

Print Example:

print(multiply_numbers(num1,num2))

divide_numbers

How to use:

divide_numbers(num1,num2)

Print Example:

print(divide_numbers(num1,num2))

palindrome

How to use:

palindrome(word)

Print Example:

print(palindrome(word))

remove_spaces

How to use:

remove_spaces(field)

Print Example:

print(remove_spaces(field))