What is the possible outcome(s) executed from the following code? Also, specify the maximum and minimum values that can be assigned to variable N.
import random
SIDES=['EAST','WEST','NORTH','SOUTH'];
N=random.randint(1,3)
OUT=''
for I in range(N,1,-1):
OUT=OUT+SIDES[I]
print OUT
SOUTHNORTH | SOUTHNORTHWEST |
SOUTH | EASTWESTNORTH |
The maximum and minimum values that can be assigned to variable N given as,
Maximum value of N = 3
Minimum value of N = 1
The possible outcome(s) print from the given code is SOUTHNORTH.