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?
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.
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.
Thank you very much I’m so blind
You’re not the first to make that typo, and I doubt you’ll be the last.