I need to create a menu screen in Python of all the users in the system, and after the system displays the list you choose the user you want and then another menu should pop-up.
So far I have:
os.system("cut -d: -f1 /etc/passwd")
chose = str(raw_input("Select user from this list > "))
How can I make the second list appear after I choose a user?