Saved Bookmarks
| 1. |
Given a Tuple tup1= (10, 20, 30, 40, 50, 60, 70, 80, 90). What will be the output of print (tup1 [3:7:2])? a. (40,50,60,70,80) b. (40,50,60,70) c. [40,60] d. (40,60) |
|
Answer» Answer is d. (40,60) |
|