Python Code Challenges: Lists

Hi, everyone. I’am new in python and i get stuck with “Python Code Challenges: Lists”. All solution which i found using loop, but I have not learned loop yet.


Why my solution doesn’t work?

1 Like

Code84…

It appears you may have used 1st instead of lst for the list name. That is, a number one (1) followed by letters “st” instead of the lowercase letter L (l). Using a digit as the first character of a variable name is not permitted in Python.

2 Likes

Thank you very much I’m so blind :grinning:

1 Like

You’re not the first to make that typo, and I doubt you’ll be the last. :slight_smile: