import seaborn as snsimport matplotlib.pyplot as plttips = sns.load_dataset("tips")plt.hist(tips["total_bill"] , bins =20, color ="skyblue", edgecolor="black")plt.title("Histogram of Total Bill")plt.xlabel("Total Bill")plt.ylabel("Frequency")plt.show()