Activity 9.21.1.
Write a function
item_lister that takes in a list of at least three values, items, as a parameter. Set the first value to โFirst itemโ, set the second value to the original first value, and set the third value to its current value plus one (rounded to two decimals). (Note: the third value of items will only be numerical.) Then, return the modified list. For example, itemLister([2,4,6.222,8]) would return ['First item', 2, 7.22, 8].

