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 trialeodell
26,386 PointsI'm not sure why this won't go through
Challenge Task 1 of 1 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 argument.
sillycase should return the same string but the first half should be lowercased and the second half should be uppercased.
For example, with the string "Treehouse", sillycase would return "treeHOUSE".
Don't worry about rounding your halves, but remember that indexes should be integers. You'll want to use the int() function or integer division, //.
This is my code......
def sillycase(iterable): half = len(iterable) // 2 first_half = iterable[:half].lower() last_half = iterable[half:].upper() return first_half + last_half
def sillycase(iterable):
half = len(iterable) // 2
first_half = iterable[:half].lower()
last_half = iterable[half:].upper()
return first_half + last_half
1 Answer
Eric M
11,546 PointsHi sjules,
This code passed for me on a copy and paste.
This can happen sometimes with the code challenges (I had it happen 3 or 4 times total in completing the beginner and intermediate Python tracks, so not too often but often enough to be a little frustrating).
You can try hitting the restart button at the top of the challenge and pasting it in fresh, but if that doesn't work you might need to log out of Treehouse, close all your browser windows, then come back and log in and try it again. That always solved it for me (but not before thinking there was something wrong with my code for way too long!).
Cheers,
Eric
eodell
26,386 Pointseodell
26,386 PointsMr. Eric
Sir, thank you so much for your time. I will do everything you nicely told me. Thank you again.
γIt went through! Thank you!!γ