Spaces:
Runtime error
Runtime error
File size: 442 Bytes
c9ec478 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# TODO: How do we know what the body shape is?
def body_shape_lookup(index):
if index == 1:
return "Hourglass"
elif index == 2:
return "Triangle"
elif index == 3:
return "Inverted Triangle"
elif index == 4:
return "Rectangle"
elif index == 5:
return "Diamond"
elif index == 6:
return "Oval"
elif index == 7:
return "Round"
else:
return "Unknown" |