3 st = "\\begin{tabular}{|l|"
4 lc = [75,100,125,150,175,200,225,250,275,300]
5 for l in range(len(lc)):
7 st +="}\n \hline \n Nombre de chiffres "
9 st += "& " + "\\textbf{"+str(j)+"}"
10 st +="\\\\\n \hline \n Dernier chiffre quelconque "
12 st += "& " + str(int(m.log(pow(10,j))))
13 st +="\\\\\n \hline \n Dernier chiffre impair "
15 st += "& " + str(int(m.log(pow(10,j))*0.5))
16 st +="\\\\\n \hline \n Dernier chiffre dans $\\{1,3,7,9\\}$"
18 st += "& " + str(int(m.log(pow(10,j))*0.4))
21 st +="\\\\\n \\hline \\end{tabular}"