Saved Bookmarks
| 1. |
Write the output of the following code.# !/usr/bin/pythonstr = “this”; # No space & digit in this string print str.isalpha( );str = “this is string example….wow!!!”; print str.isalpha( ); |
|
Answer» The following code is- True False |
|