I have updated the variable, but the outcome doesn’t change. The two outcomes are both 96.
But if I code the command ‘quilt_squares = quilt_width * quilt_length’ below again, the outcome will be 64 which is what I want. I don’t know why. I am confused , Could someone tell me the reason
Thank you very much!
quilt_width = 8
quilt_length = 12
quilt_squares = quilt_width * quilt_length
print(quilt_squares)
quilt_length = 8
print(quilt_squares)