FAQ: Learn Python: A Day at the Supermarket - String Looping

This community-built FAQ covers the “String Looping” exercise in Codecademy’s lessons on Python.

FAQs for the Codecademy Python exercise String Looping:

Join the Discussion. We Want to Hear From You!

Have a new question or can answer someone else’s? Reply (reply) to an existing thread!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources about Python in general? Go here!

Want to take the conversation in a totally different direction? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account, billing, Pro, or Pro Intensive? Reach out to our support team!

None of the above? Find out where to ask other questions here!

Other FAQs

The following are links to additional questions that our community has asked about this exercise:

  • This list will contain other frequently asked questions that aren’t quite as popular as the ones above.
  • Currently there have not been enough questions asked and answered about this exercise to populate this FAQ section.
  • This FAQ is built and maintained by you, the Codecademy community – help yourself and other learners like you by contributing!

Not seeing your question? It may still have been asked before – try (search) in the top-right of this page. Still can’t find it? Ask it below by hitting the reply button below this post (reply).

Hey all

I have one query
When i am using below code to count the number of words in a particular sentence
it is giving error

def nocount(x):
count=0
for letter in x:
if letter == “m” :
count=count+1

count =count+1
return count

word = “Programming is fun!”
answer= nocount(word)
print answer

Hello, @surbhiagrawal2543893, and welcome to the Codecademy Forums.

Line 6 in your code should be indented to the same degree as the preceding line. Since it is not, an `IndentationError was raised.

As you correct the problem, be sure to maintain the consistency of the indentations of other lines within your nocount function.

Thanks for your immediate reply, but now i am getting this error

The quotes that you are using in your code are not standard ones for delimiting strings. You seem to be using , where you should be using ".

Hi, @surbhiagrawal2543893,

When you post code, it is important to format it, so that indentation and other details are visible and properly represented. Since the code in your first post was not formatted, the quotes were not represented properly, and caused a problem when you copied the code and pasted it back into the Codecademy code editor.

See How to ask good questions (and get good answers) for information on how to format code for posting.

1 Like