id/email
password
forgot password
about | help | done | prefs | create account
CodingBat code practice

Python > String-1 > extra_end
prev  |  next  |  chance

Given a string, return a new string made of 3 copies of the last 2 chars of the original string. The string length will be at least 2.

extra_end('Hello') → 'lololo'
extra_end('ab') → 'ababab'
extra_end('Hi') → 'HiHiHi'

...Save, Compile, Run

See also Python Example Code. Python help docs: Python Strings | Python Lists | Python If Boolean


prev  |  next  |  chance   |  CodingBat  >  String-1

Forget It! -- delete my code for this problem 115.0

Copyright Nick Parlante 2006-10 - privacy