Chris Braun
Chris Braun
Hey, that sounds good! I'm not sure how the code for the item drop is actually implemented, but assuming that it's not just a variable you can query but rather...
> I would also understand if you want to keep the phonebook read-only. Why would that be desired? Is there some specific reason? I would also like to see an...
Here's some nicer code to create the needed entry data XML: ```python import xml.etree.ElementTree as ET def get_phonebook_entry_data(name: str, number: str) -> str: envelope = ET.Element("Envelope", {"xmlns:s": "http://www.w3.org/2003/05/soap-envelope"}) contact =...