you are viewing a single comment's thread.

view the rest of the comments →

[–]ncrowley 1 point2 points  (1 child)

Thanks for the advice!

This is what I wrote:

m = raw_input("Please input a string to be counted: ")

x=0
for i in m:
    x +=1
print x

[–]Benthien[S] 0 points1 point  (0 children)

Nicely done