'How do I change the decimal place of the y-axis ticks on a seaborn barplot?

I am having trouble figuring out how to change the ticks of my y-axis. For example the highest tick says 1.75 when it should say 17.5.

sns.barplot(data = tn_movie_budgets_df, x = 'release_date', y = 'worldwide_gross', order=['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])

plt.xlabel('Month of Release')
plt.ylabel('Total Worldwide Gross in billions')
plt.title('Total Worldwide Gross VS release Month')


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source