Exercise #1: Item update ** Write a Python script that updates a single test item record. Take the price value in the item and place it in a variable-length note field. For example: Item before update: i1001890 (Five smooth stones : Hope's diary) price: 8.95 Variable fields: a: |b31298001536872 |g03/26/2001 |dJ AMERICA (SERIES) |cK3192 |p895 b: 31298001536872 c: |aJ AMERICA (SERIES) Item after update: i1001890 (Five smooth stones : Hope's diary) price: 8.95 Variable fields: a: |b31298001536872 |g03/26/2001 |dJ AMERICA (SERIES) |cK3192 |p895 b: 31298001536872 c: |aJ AMERICA (SERIES) x: 8.95 Note: To ensure that you are only updating the one item record, embed the record number of the test item in the script. Also, when adding a new variable-length field via API, the other existing fields of the same type are removed. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Exercise #2: Series display ** Write a Python script that displays a series title followed by the series in order. If there are missing entries, note those in the output. For example: Bib records with series 4901 |aThe magic school bus : a science chapter book ;|v#03. Outputs the following: Series information for The magic school bus : a science chapter book Missing: #01. The search for the missing bones (#02.) The wild whale watch (#03.) The magic school bus space explorers (#04.) Twister trouble (#05.) The giant germ (#06.) The great shark escape (#07.) Penguin puzzle (#08.) Dinosaur detectives (#09.) Expedition down under (#10.) Missing: #11. Amazing magnetism (#12.) Missing: #13. Electric storm (#14.) Voyage to the volcano (#15.) Butterfly battle (#16.) Food chain frenzy (#17.) Missing: #18. Missing: #19. Rocky road trip (#20.) Note: Unless cataloging practices are consistent amoung series, it's likely that the script will only apply to a single series. And even with that, you may encounter anomalys among the records within the same series. Try to start with a series that maintains consistent cataloging or work with a series that you can apply consist values among series. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++