Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List vs index:
#4
(Jul-01-2020, 01:14 PM)deanhystad Wrote: What do you want to do? I don't mean "How are you going to program", but "What do you want to do?" Can you write a concise description of what you want your program to do? That is the first step in writing a program, and that description should be the first thing you mention when asking questions about your program.

I am writing a program that prints every other letter in a string starting with the first letter (index 0). If the string is "Hello World" the output should be:
index = 0 letter = H
index = 2 letter = l
index = 4 letter = o
index = 6 letter = W
index = 8 letter = r
index = 10 letter = d

From the description you would see the solution involves calculating even numbers in the range 0 to the length of the string and using the index to get the letter. You could write this in pseudo code:
for index in range 0 to length(string)
    print index and string[index]
Then convert to code.

If you start with code you risk doing weird things like counting by 1 and using the modulo operator to find even numbers.

Thank you ! got it. i was not thinking correctly. i used what you proposed and used the Range with a step of 2 starting at 0. this solved the exercise.
Reply


Messages In This Thread
List vs index: - by Frederico_Caldas - Jul-01-2020, 03:11 AM
RE: List vs index: - by ndc85430 - Jul-01-2020, 03:59 AM
RE: List vs index: - by deanhystad - Jul-01-2020, 01:14 PM
RE: List vs index: - by Frederico_Caldas - Jul-03-2020, 01:24 AM
RE: List vs index: - by perfringo - Jul-03-2020, 06:28 AM
RE: List vs index: - by DeaD_EyE - Jul-03-2020, 10:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to fix list index out of range longmen 26 6,132 Apr-27-2022, 05:46 PM
Last Post: deanhystad
  list index out of range OliverG 3 2,365 Sep-03-2021, 12:04 AM
Last Post: itsmycode
  Index List a04j 2 2,944 Jul-10-2021, 01:14 PM
Last Post: BashBedlam
  List index out of range when turning CSV into dict ranbarr 15 6,520 May-12-2021, 10:38 AM
Last Post: ranbarr
  To find the index of the first occurrence of the key in the provided list Angry_bird89 4 3,295 Jun-20-2020, 06:53 PM
Last Post: Angry_bird89
  list index out of range mcgrim 2 2,934 May-25-2019, 07:44 PM
Last Post: mcgrim
  IndexError: list index out of range abdullahali 4 3,910 Jan-17-2019, 07:54 AM
Last Post: buran
  "List index out of range" for output values pegn305 3 5,330 Nov-26-2017, 02:20 PM
Last Post: heiner55
  list index out of range DrPengin 1 3,710 Nov-09-2017, 08:35 PM
Last Post: gruntfutuk

Forum Jump:

User Panel Messages

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