xxxxxxxxxx
import pandas as pd
# Create a DataFrame with some sample values
data = {'Value': [1.2345, 2.3456, 3.4567, 4.5678]}
df = pd.DataFrame(data)
# Round the values in the 'Value' column to 2 decimal places
df['Value'] = df['Value'].round(2)
print(df)