如果 len(list) 不能被 3 整除,则排除 function 中的最后一项。 Python 2.7.1
如果你有一个字符串
string='abcdefg'
,并且想检查该字符串的长度是否能被 3 整除,
len(string)
你会使用什么命令?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用模(除法余数)运算符
%
:如果要将字符串剥离到可被 3 整除的长度,请使用
或
You can use the modulo (division remainder) operator
%
:If you want to strip the string to a length divisible by 3, use
or