It contain two modols math and string tools
#pythonFolder A simple practice package for learning how to create and puplish python packages.
##installation after uploading to PyPI or TestPyPI, Install it using: '''bash pip install pythonFolder
###I have two modules math_tools and string_tools ////////////////////////////////////////////////// math_tools contain many functions NumSum(num1,num2):that calcolate the sum
BiggerNum(num1,num2):that return the bigger number
factorial(n):that return thefactorial
average(numbers):that return the average square_area(side):that return the square
circle_area(radius):that calculate the circle area rectangle_perimeter(length,width):that calculate the rectangle area
is_even(n):that check if the number is even
muitiply(a,b):that muitiply two numbers
power(base,exp):that calculate the power
/////////////////////////////////////////////////////// string_tools contain many functions upper_text(text):that return the string with upper case
lower_text(text):that return the string with lower case
reverse_text(text):that reverse the text
count_vowels(text):that count the vowels litter