181k views
4 votes
Count the number of characters in string str1. do not use len(). save the number in variable numbs.

User Minsk
by
7.4k points

1 Answer

3 votes

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:

  1. Initialize a variable called numbs with a value of 0.
  2. Use a loop to iterate through each character in the string str1.
  3. For each character encountered, increment the numbs variable by 1.
  4. 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

User Baske
by
7.8k points