Python tronquant la chaîne sur la longueur
mystr="I am too long I should only be 10 characters.";
mystr = mystr[:10]
Friendly Hawk
mystr="I am too long I should only be 10 characters.";
mystr = mystr[:10]