asked 77.9k views
22 votes
Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.

52
53
82
83
1. Line 1
for numB in (5,8]
2. Line 2
for numA in [2,3]:
3. Line 3
print (numB, numA)
SUBMIT ANSWER
ASK FOR HELP
TURN ITIN
2014 Cylyonne All right reserved

1 Answer

1 vote
for numb in [5,8]:
for numa in [2,3]:
print(str(numb) + str(numa))