Cómo verificar si la cadena termina con caracteres específicos en Python
Text = "python is easy"
print(Text.endswith("easy"))
Programmer of empires
Text = "python is easy"
print(Text.endswith("easy"))