Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (2016, retired 2019) Slices sillyCase

I need you to create a new function for me. This one will be named sillycase and it'll take a single string as an argum

i need help on this

sillycase.py
def sillycase("lovecoding"):
    first_half = lovecoding[0:5]
    second_half = lovecoding[5:]
    return first_half.lowercase + second_half.uppercase

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You're on the right path. Two issues:

  • the function parameter lovecoding needs to be a variable not a string
  • the length of the input string is unknown. You will need to use len() and divide by 2 to find the mid-point value to use in the slices

Post back if you need more help. Good luck!!!