For Daily Free Study Material Join wiredfaculty Whatsapp Group | Download Android App | Ncert Book Download
Sponsor Area
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