Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
reversing a string
#1
Hello,

I was given a homework, the output should look like this:

W
Wo
Wor
Worl
World
World
World H
World He
World Hel
World Hell
World Hello

The teacher suggested this solution:
userInput = 'Hello World'

userInput = userInput.split(' ')

userInput = userInput[::-1]

userInput = ' '.join(userInput)

tmp = ''

for char in userInput:
    tmp += char
    print(tmp)
I dont understand why we need an additional tmp variable. Could someone please explain it to me, or have a better, more pythonic solution?
Reply


Messages In This Thread
reversing a string - by kerzol81 - Jul-18-2018, 02:32 PM
RE: reversing a string - by ichabod801 - Jul-18-2018, 05:21 PM
RE: reversing a string - by nilamo - Jul-18-2018, 06:34 PM
RE: reversing a string - by perfringo - Jul-18-2018, 09:24 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  reversing strings westbob 4 2,651 Jun-11-2019, 04:11 PM
Last Post: buran
  Reversing a String grkiran2011 1 2,379 Dec-02-2017, 04:43 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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