MCQOPTIONS
Saved Bookmarks
| 1. |
If set1={"a","b",3}set2={3,7}6.What will the below Python code do? |
| A. | It removes element with index position 3 from set1 |
| B. | It removes element 3 from set1 |
| C. | It removes only the first occurance of 3 from set1 |
| D. | No such function exists for set |
| Answer» C. It removes only the first occurance of 3 from set1 | |