Saved Bookmarks
| 1. |
Write the output of the following code.#!/usr/bin/python str = ” “;print str.isspace( );str = “This is string example….wow!!!”; print str.isspace( ); |
|
Answer» The following code. is - True False |
|