字符串检查与字符串列表

时间:2017-12-20 16:26:50

标签: python

确保以下内容受信任的最快捷方式是什么:

email = "foobar@gmail.com"

trusted = [".co.uk", ".com", ".net", ".edu", ".ac.uk"]

1 个答案:

答案 0 :(得分:1)

你可以使用过滤器来做这些事情:

list(filter(lambda x: email.endswith(x),trusted))