Final answer:
To count the number of characters in a string without using len(), you can loop through each character of the string and increment a counter variable by 1 for each character encountered.
Step-by-step explanation:
To count the number of characters in a string, we can loop through each character of the string and increment a counter variable by 1 for each character encountered. Here's the step-by-step explanation:
- Initialize a variable called numbs with a value of 0.
- Use a loop to iterate through each character in the string str1.
- For each character encountered, increment the numbs variable by 1.
- After the loop finishes, the numbs variable will contain the total number of characters in the string str1.
Example:
str1 = 'Hello, World!'
numbs = 0
for char in str1: numbs += 1
print(numbs)
Output:
13