I have this assignment where i have to create a list asking users to input 3 or 5 of their favorite movies, then im suppose to take that input and create a list with it and after display the list.
limit = 3
movieslist = []
while len(movieslist) < limit:
movie = raw_input("Enter The Name Of Your favorite Netflix movie" )
print
movieslist.append(movie)
print "The Following Is A List Of Your Top 3 Favorite Netflix Movies:"
for x in movieslist:
print x
printby inserting\n(the newline character) at the beginning or end of theraw_inputprompt string, e.g.raw_input("Enter...Netflix\n")