Computer Science, asked by vedant200423, 4 months ago

16
What are the possible correct outputs after the execution of Python code
given below? What will be the minimum value and the maximum value
stored in the variable last?
(2 Points)
from random import randrange
last=randrange (21, 30, 2)
for num in range (10, last, 4) :
print (num, end='-')
1) 10-12-14-16-
ii) 10-14-18-22-
iii) 10-14-22-26-
iv) 10-14-18-22-26-

Attachments:

Answers

Answered by keyboardavro
0

Answer:

execute it to check the answer

Explanation:

Similar questions