# File: Exercise3_1.py
# Purpose: function that converts measure in feet to meters
# Author: Emily G. Allen

# No imports necessary

# Inputs: feet: a measure in feet
# Outputs: conversion of the measure in feet to meters

def convertFeet(feet):
    inches = feet * 12.0 # 12 inches / foot
    centimeters = inches * 2.54 # 2.5 cm / in
    meters = centimeters / 100.0 # 100 cm per meter

    return meters # return the meters
