标签: python python-3.x
在python中有更好的方法吗?:
((w.endswith('<') or w.endswith('</'))
也许any可以使用
any
答案 0 :(得分:6)
字符串上的endswith方法可以将元组作为参数:
endswith
w.endswith(('<','<\'))