if you have a string

string='abcdefg'

and you wanted to check if the length of the string is divisible by 3

len(string)

what command would you use?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 9 down vote accepted

You can use the modulo (division remainder) operator %:

if len(s) % 3 == 0:
    ...

If you want to strip the string to a length divisible by 3, use

s[:len(s) // 3 * 3]

or

s[:-(len(s) % 3)]
link|improve this answer
1  
Modulo is a computer science student's best friend. You don't really use it all that often in the workplace (although it does have its usefulness) but professors seem to absolutely adore it! I suppose it does fulfill the purpose of getting people to think more iteratively. – corsiKa Nov 11 '11 at 0:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.