Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
don't work,if simply range - work
don't work in Python3.8
Probably it's a solution in Python 2.7 where
/
was integer division.Hi.Your solution isn't correct without int function...
don't work in editor!!!
Not enough int() and parentheses.Must be
def get_middle(s):
return s[int((len(s)-1)/2):(int(len(s)/2)+1)]