Spaces:
Runtime error
Runtime error
File size: 650 Bytes
c9ec478 c205b8f c9ec478 c205b8f c9ec478 c205b8f c9ec478 c205b8f c9ec478 c205b8f c9ec478 c205b8f c9ec478 c205b8f c9ec478 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# TODO: How do we know what the body shape is?
def body_shape_lookup(index):
if index == 1:
return "Skittle"
elif index == 2:
return "Goblet"
elif index == 3:
return "Hourglass"
elif index == 4:
return "Cornet"
elif index == 5:
return "Cello"
elif index == 6:
return "Apple"
elif index == 7:
return "Column"
elif index == 8:
return "Bell"
elif index == 9:
return "Vase"
elif index == 10:
return "Brick"
elif index == 11:
return "Lollipop"
elif index == 12:
return "Pear"
else:
return "Unknown" |