Skip to content

Instantly share code, notes, and snippets.

@coutinhocf
Forked from cibofdevs/count_number_char.py
Created September 16, 2019 22:42
Show Gist options
  • Save coutinhocf/1526606e4dffb66fe763b0890e0b8edb to your computer and use it in GitHub Desktop.
Save coutinhocf/1526606e4dffb66fe763b0890e0b8edb to your computer and use it in GitHub Desktop.
# Write code to count the number of characters in original_str using the accumulation pattern and assign the answer to a variable num_chars.
# Do NOT use the len function to solve the problem (if you use it while you are working on this problem, comment it out afterward!)
original_str = "The quick brown rhino jumped over the extremely lazy fox."
num_chars = 0
for i in original_str:
num_chars = num_chars + 1
print(num_chars)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment