I'm studying python and there's a lab I can't seem to crack. We have a line e.g. shacnidw
, that has to be transformed to sandwich
. I somehow need to iterate with a for
loop and pick the letters with odd indexes first, followed by backward even indexes. Like pick a letter with index 1,3,5,7,8,6,4,2.
It looks pretty obvious to use a list or slices, but we aren't allowed to use these functions yet. I guess the question is just how do I do it?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…