Page 1 of 1

How would you set this up within the IDLE? 1-Given the following list, write a statement which uses the remove function

Posted: Fri May 20, 2022 11:38 am
by answerhappygod
How would you set this up within the IDLE?
1-Given the following list, write a statement which
uses the remove function to remove the item 107.6 from
the list.
my_list
= [85.0, 91.1, 107.6, 57.6, 33.9]
2-Given the following list, what will my_list contain after
the statement my_list.pop() is
executed?
my_list
= [85.0, 91.1, 107.6, 57.6, 33.9]
3-Given the following list, what will
my_list contain after the
statement my_list.insert(3, 58.8) is
executed?
my_list
= [85.0, 91.1, 107.6, 57.6, 33.9]