Skip to content

Instantly share code, notes, and snippets.

@TheMuellenator
Last active March 16, 2023 17:44
Show Gist options
  • Save TheMuellenator/fc9f7ffb3075da52a5953f859e01aee0 to your computer and use it in GitHub Desktop.
Save TheMuellenator/fc9f7ffb3075da52a5953f859e01aee0 to your computer and use it in GitHub Desktop.
Python Functions Coding Exercise - Part 2 Solution
# TODO 1: Add two parameters (length_ft and width_ft)
def calc_square_meters_from_feet(length_ft, width_ft):
# TODO 2: Modify the code below:
metric_length = length_ft * 0.3048
metric_width = width_ft * 0.3048
metric_area = metric_length * metric_width
# Leave the line below as it is
return metric_area
@Ayush0901
Copy link

@catalinazz that's good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment