+2 votes
in Class 11 by kratos

Write the output of the following code.

!/usr/bin/python

str = ” “;

print str.isspace( );

str = “This is string example….wow!!!”;

print str.isspace( );

1 Answer

+4 votes
by kratos
 
Best answer

The following code. is -

True

False

...