si c'est bien ce que j'ai compris ca doit être ça:
Réponse :
from math import * #on importe la bibliotheque math
n = 0 #on initialise n (la puissance) a 0
while 0.8**n > 0.01: #tant que 0.8 puissance n n'est pas inferieur a 0.1
n += 1 #on rajoute 1 a n
print(n) #on affiche le résultat
et normalement ca te retourne 21.
Bonne chance avec python
Matthieu