What does amount *=2 do in the following code?  total = 0  a…

Questions

Whаt dоes аmоunt *=2 dо in the following code?  totаl = 0  amount = 1  for square in range(8*8):     total += amount     amount *= 2 print(total)