(Conversions between feet and meters) Write a module that contains the following two functions:
# Converts from feet to meters def footToMeter(foot):
# Converts from meters to feet def meterToFoot(meter):
The formulas for the conversion are:
foot $=$ meter $/ 0.305$ meter $=0.305 \stackrel{*}{*}$ foot
Write a test program that invokes these functions to display the following tables: