Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
If / loops help
#1
Hi

I am going through the Python Crash Course book, and answering the questions in each chapter.

I'm stuck at one.

The question is:

1. Create a list of numbers from 1 - 9
2. Loop through the list and using if-elif-else the output should read "1st 2nd 3rd" etc with each result on the new line.

So I did this:

numbers_list = list(range(1,10))
print(numbers_list)

for number in numbers_list:
    if number == '1':
        print(f"{number}st")
I printed the list as soon as I created it to make sure that was ok, which it was.

I then created a for loop to go through each number. I tested '1' but that doesn't seem to work.

Any ideas?
Reply


Messages In This Thread
If / loops help - by kam_uk - Nov-29-2020, 05:49 PM
RE: If / loops help - by deanhystad - Nov-29-2020, 06:54 PM
RE: If / loops help - by jefsummers - Nov-29-2020, 10:57 PM
RE: If / loops help - by GirishaSJ - Dec-03-2020, 08:11 AM
RE: If / loops help - by buran - Dec-03-2020, 11:24 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020