MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? def change(one, *two): print(type(two)) change(1,2,3,4) |
| A. | Integer |
| B. | Tuple |
| C. | Dictionary |
| D. | An exception is thrown |
| Answer» C. Dictionary | |