AttributeError: ‘float’ object has no attribute ’round’ February 10, 2022 by admin Just change this: a = 3.56803 print(a.round(2)) to this: a = 3.56803 print(round(a, 2))