Post

@PythonPr B) 5 ✅
len() counts how many characters are inside the string. So....
"Hello" has 5 characters:
H e l l o
So print(len(s)) outputs 5.
English

@PythonPr B. len() counts the elements in an object. There are 5 characters in the word 'hello', so 5
English

































