Comment imprimer la table de multiplication 99 en Python : 1. Utilisez [for-for] ; 2. Utilisez [while-while] ; ]; 5. Définissez une variable a, le code est [pour i dans a:j=1].
Recommandations d'apprentissage associées : Tutoriel Python
Comment imprimer la table de multiplication 99 en python :
La première façon : utiliser for-for
# 九九乘法表 for i in range(1, 10): for j in range(1, i+1): print('{}x{}={}\t'.format(j, i, i*j), end='') print()
La 2ème méthode : Utiliser while-while
# 九九乘法表 i = 1 while i <= 9: j = 1 while(j <= i): # j的大小是由i来控制的 print('%d*%d=%-3d' % (i, j, i*j), end='\t') j += 1 print('') i += 1
La 3ème méthode : Utiliser while-for
i = 1 while(i <=9): for j in range (1,i+1): #range()函数左闭右开 print('%d*%d=%-3d'%(i,j,i*j),end='') i += 1 print()
La 4ème voie : Utiliser pendant un certain temps
for i in range(1,10): j = 0 while j < i: j += 1 print("%d*%d=%-3d"%(i,j,i*j),end='') print( )
Le 5ème façon : Définir une variable a
a = [1, 2, 3, 4, 5, 6, 7, 8, 9] for i in a: j = 1 while j <= i: print('%d*%d=%-3d'%(i,j,i*j),end='\t') # %-3d 是控制输出结果占据3位,且从左面开始对齐 j += 1 print( )
Le résultat de l'exécution est le suivant :
La 6ème façon : Utiliser 1 L'exécution Le résultat de l'instruction de ligne
print('\n'.join([' '.join(["%2s x%2s = %2s" % (j, i, i*j) for j in range(1, i+1)]) for i in range(1, 10)]))
est le suivant :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!