标签: python
确保以下内容受信任的最快捷方式是什么:
email = "foobar@gmail.com" trusted = [".co.uk", ".com", ".net", ".edu", ".ac.uk"]
答案 0 :(得分:1)
你可以使用过滤器来做这些事情:
list(filter(lambda x: email.endswith(x),trusted))