Trying To Make A PYTHON BOOT
import time print "Booting the operating system's information." time.sleep(2) name = raw_input("Enter your name. ") password = raw_input("Enter your password") if name == name: print "Verified name, verifying password." else: print "Name not verified." time.sleep(2) if password == password: print "Verified password." else: print "Password not verified." time.sleep(2) print "Welcome to TO-DOS, enter \'help\' to view commands." credits = ("You have entered credits, C 2017 TS-DOS ALL RIGHTS RESERVED") help = ("You have entered the command help, total commands: credits.") user = input("> ") Output: /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 "/Users/programmer/PycharmProjects/Folder One.py/document_one.py" Booting the operating system's information. Enter your name. Root Enter your passwordRoot Verified name, verifying password. Verified password. Welcome to TO-DOS, enter 'help' to view commands. > help Process finished with exit code 0 Description: The commands don't work.