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 trialnewpal
1,717 PointsIs there a different approach to solving this challenge?
def sillycase(string): string1 = sillycase[:len(string)//2].lower() string2 = sillycase[len(string)//2:].upper() return string1 + string2
def sillycase(string):
string1 = sillycase[:len(string)//2].lower()
string2 = sillycase[len(string)//2:].upper()
return string1 + string2
2 Answers
Steven Parker
231,248 PointsYou seem to have the "classic" solution there. You could eliminate the temporary string variables and add one to prevent calculating the size twice, but that's just minor implementation differences, not really a change in approach:
def sillycase(string):
half = len(string) // 2
return string[:half].lower() + string[half:].upper()
newpal
1,717 PointsThanks Steven!
newpal
1,717 Pointsnewpal
1,717 PointsSorry, I meant the following code:
[MOD: added formatting -cf]