Implement function get_contact(contacts, name)that returns a string. The contacts and the name parameter are bothtype string. This function checks for the name string in thecontacts string and returns that person’s contact information. Ifthe person is not found, the function returns, “name not incontactâ€. Assume input is always valid. Assume the same name is notrepeated in contacts.
[You may use split(), range(), len() ONLY and no other built-infunction or method]
Examples:
              contacts= “Frank 703-222-2222 Sue 703-111-1111 Jane703-333-3333â€
              name= “Sueâ€
              print(get_contact(contacts,name))
              returns:
              703-111-1111
              name= “Samâ€
print(get_contact(contacts, name))
              returns:
              namenot in contact