-
str = "webisworld" print("String Length: ", len(str))
String Length: 10
text = "webisworld" length = 0 while text[length:]: length = length+1 print("String Length: ", length)