Hello there, I am trying to code a problem where the program will…

Question Answered step-by-step Hello there, I am trying to code a problem where the program will… Hello there, I am trying to code a problem where the program will show the number that the user is thinking of without revealing the number. The program will ask the user if they are thinking between two numbers ranging from 1 to 63. Here is the code so far. Thank you for your help.number_set1 = [2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31, 34, 35, 38, 39, 42, 43, 46, 47, 50, 51, 54, 55, 58, 59, 62, 63] number_set2 = [8, 9, 10, 11, 12, 13, 14, 15, 24, 25, 26, 27, 28, 29, 30, 31, 40, 41, 42, 43, 44, 45, 46, 47, 56, 57, 58, 59, 60, 61, 62, 63] number_set3 = [4, 5, 6, 7, 12, 13, 14, 15, 20, 21, 22, 23, 28, 29, 30, 31, 36, 37, 38, 39, 44, 45, 46, 47, 52, 53, 54, 55, 60, 61, 62, 63] number_set4 = [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63] number_set5 = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63] number_set6 = [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63] magic_number = 0print(‘I can read your mind… think of a number between 1 to 63 (inclusive)’)print(‘Don’t tell me… just be sure to keep it in your mind… I’ll work it out’)print(‘by having you answer a few, simple questions….  :)’) # Where I have the code below to make the program work…  # Display the secret number to the screen  print(‘The number you are thinking about is…..’, magic_number) References:Python Programming Problem Solving – Magic Numbershttps://mindyourdecisions.com/blog/2015/08/16/a-4×4-grid-prediction-math-magic-trick-sunday-puzzle/#.VdDqqPlVhBc Computer Science Engineering & Technology Python Programming COMP 1039 Share QuestionEmailCopy link Comments (0)