Saved Bookmarks
| 1. |
Find the output from the following code:t=tuple()t = t +(‘Python’,)print tprint len(t)t1=(10,20,30)print len(t1) |
|
Answer» (‘Python’,) 1 3 |
|