Как проверить, заканчивается ли строка определенными символами в Python

Text = "python is easy"
print(Text.endswith("easy"))
Programmer of empires