Como verificar se a string termina com caracteres específicos em Python

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