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?
|
if you have a string
and you wanted to check if the length of the string is divisible by 3
what command would you use?
| ||||
feedback
|
|
You can use the modulo (division remainder) operator
If you want to strip the string to a length divisible by 3, use
or
| |||||
feedback
|