Python Forum
It worked now it doesnt...ugh
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
It worked now it doesnt...ugh
#1
Can someone look at this and tell me why this does not work....I know it is something simple as it worked 1 min and not the next. picharm is not showing any errors

print("--------------------------")
print("Frequently Asked Questions")
print("--------------------------")


menu = """
1: Add a Question
2: Delete a Question
3: List all FAQ
4: Exit
"""

FAQ = {}


done = False

while not done:

    print(menu)
    option = input("Please enter your selection: ")

    if option == 1:
        question = input("\nEnter a question to be added: ")
        answer = input("\nThe answer to the question is: ")
        FAQ[question] = answer
        print('Your FAQ has been added. ')

    elif option == 2:
        item = input("Enter question to be deleted: ")
        if item in FAQ: del(FAQ[item])
        else:
            print("That question is not in the dictionary! ")

    elif option == 3:
        for item in FAQ:
            print("\nQuestion: ", item)
            print("Answer: ", FAQ[item])
            print()

    elif option == 4:
        done = True
        print('All entries added to dictionary. \nSession is closed! ')
Reply


Messages In This Thread
It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 03:44 PM
RE: It worked now it doesnt...ugh - by ichabod801 - Aug-07-2019, 05:15 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 05:26 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 06:35 PM
RE: It worked now it doesnt...ugh - by ichabod801 - Aug-07-2019, 06:43 PM
RE: It worked now it doesnt...ugh - by Yoriz - Aug-07-2019, 06:43 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 07:06 PM
RE: It worked now it doesnt...ugh - by ndc85430 - Aug-07-2019, 07:04 PM
RE: It worked now it doesnt...ugh - by Yoriz - Aug-07-2019, 07:10 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 07:20 PM
RE: It worked now it doesnt...ugh - by Yoriz - Aug-07-2019, 07:25 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 07:29 PM
RE: It worked now it doesnt...ugh - by Yoriz - Aug-07-2019, 07:34 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 07:37 PM
RE: It worked now it doesnt...ugh - by Yoriz - Aug-07-2019, 07:41 PM
RE: It worked now it doesnt...ugh - by raymond2688 - Aug-07-2019, 07:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  im not sure what ive done wrong code doesnt run dgizzly 3 1,459 Nov-16-2022, 03:02 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020