0
I dont get why the string very underweigth always shows up
2 Antworten
+ 3
i think its because the function re-declaring ibm variable inside.
you can return the ibm variable from the function and assign it to your variable. so the ibm variable that you're trying to compare haven't initialize yet.
def funcao():
return weigth / heigth ** 2
ibm = funcao();
0
tks it worked perfectly