import os #Must Access this to continue. def main(): while True: UserName = input ("Enter Username: ") PassWord = input ("Enter Password: ") if UserName == Bob and PassWord == rainbow123: time.sleep(1) print ("Login successful!") logged() else: print ("Password did not match!") def logged(): time.sleep(1) print ("Welcome to ----") main() Traceback (most recent call last): File "C:\Users\Austin\Desktop\oysterDev\oysterDev.py", line 23, in main() File "C:\Users\Austin\Desktop\oysterDev\oysterDev.py", line 11, in main if UserName == Bob and PassWord == rainbow123: NameError: name 'Bob' is not defined import os import time #Must Access this to continue. def main(): while True: UserName = input ("Enter Username: ") PassWord = input ("Enter Password: ") if UserName == 'Bob' and PassWord == 'rainbow123': time.sleep(1) print ("Login successful!") logged() else: print ("Password did not match!") def logged(): time.sleep(1) print ("Welcome to ----")