Multiple ways to calculate 8 raise to 7

import math print(int(math.pow(8,7))) print(8 ** 7) s=1 for i in range(1,8):       s=s * 8       print(s) k=1s=1 while k < 8:      s=s*8     k=k+1 print(s) Output 2097152209715220971522097152