+1 vote
in Class 11 by kratos

Write the output of the following code.

!/usr/bin/python

str = “this”; # No space & digit in this string print str.isalpha( );

str = “this is string example….wow!!!”; print str.isalpha( );

1 Answer

+3 votes
by kratos
 
Best answer

The following code is-

True False

...