Ask your own question, for FREE!
Computer Science 9 Online
mufoslapz:

What is the output? answer = 0 for numB in [1,4]: for numA in [2,3]: answer = answer + numA + numB print (answer)

jimthompson5910:

hint: `for numA in [2,3]:` means that you'll do a for loop on the array from \(2 \le x < 3\). But Python only considers integer x values, so in reality this set is \(\{2\}\) Similarly, `for numB in [1,4]:` means we work on the array of values \(\{1,2,3\}\)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!