def hill(lettre1 , lettre2):
    alphabet=["A","B","C","D","E","F","G","H","I","J","K",
    "L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]
    x1=alphabet.index(lettre1)
    x2=alphabet.index(lettre2)
    y1=…
    y2=…
return …,…
