The great British mathematician Alan Turing proposed a simple test to determine whether machines could exhibit intelligent behavior. A user sits at a computer and does the same text chat with a human...

1 answer below »
The great British mathematician Alan Turing proposed a simple test to determine whether machines could exhibit intelligent behavior. A user sits at a computer and does the same text chat with a human sitting at a computer and a computer operating by itself. The user doesn’t know if the responses are coming back from the human or the independent computer. If the user can’t distinguish which responses are coming from the human and which are coming from the computer, then it’s reasonable to say that the computer is exhibiting intelligence. The following script, while showing signs of intelligence, would likely not pass this test.


Create a script that plays the part of the independent computer, giving its user a simple medical diagnosis. The script should prompt the user with 'What is your problem?' When the user answers and presses Enter, the script should simply ignore the user's input, then prompt the user again with 'Have you had this problem before (yes or no)?' If the user enters 'yes', print 'Well, you have it again.' If the user answers 'no', print 'Well, you have it now.' If the user answers differently, the script should repeat the question: 'Please answer my question: Have you had this problem before (yes or no)?" until the user responds by 'yes' or 'no'.


Here is a sample interaction sequence with a patient (bold text is displayed by the script):


What is your problem? I have a sore throat
Have you had this problem before (yes or no)? I do not know
Please answer my question: Have you had this problem before (yes or no)? I am not sure
Please answer my question: Have you had this problem before (yes or no)? yes
Well, you have it again
Answered 1 days AfterJul 11, 2021

Answer To: The great British mathematician Alan Turing proposed a simple test to determine whether machines...

Aditya answered on Jul 13 2021
143 Votes
def UserMenu():
while True:
answer = input('Have you had this problem before (yes or n
o)? ')
if answer == 'yes':
print('Well, you have it again')
break
elif answer == 'no':
print('Well, you have it now.')
break
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here