Saved Bookmarks
| 1. |
Write the output from the following code:t=(‘a’,‘b’,‘c’,‘A’,‘B’)print max(t)print min(t) |
|
Answer» The output is ‘c’ 'A’ |
|