Loops/Foreach: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: separated two comments (each to their own line).)
(→‎{{header|Python}}: fixed spelling)
Line 1,247: Line 1,247:
words += 1
words += 1
for eachchar in eachword:
for eachchar in eachword:
chracters += 1
characters += 1


print lines, words, characters</lang>
print lines, words, characters</lang>