Saved Bookmarks
| 1. |
Write a python program to find the length of a string? |
|
Answer» str=input (“Enter a string: “) print (len(str)) Output: Enter a string: HELLO 5 |
|