Re: Untitled

From Colossal Leech, 6 Months ago, written in Plain Text, viewed 86 times. This paste is a reply to Untitled from Insensitive Agouti - go back
URL http://codebin.org/view/2d333002/diff Embed
Viewing differences between Untitled and Re: Untitled
/n - ?????? ???????? ?? ????????? ??????
print(f'??????? ???????????????? ??????? ????? Action: {1}\n??????? ???????????????? ??????? ????? Sports: {20}')
import matplotlib.pyplot as plt

# Assuming you have a list of categories and their values
categories = ['Category1', 'Category2', 'Category3']
values = [20, 35, 30]

plt.bar(categories, values)

# Loop to add values on each bar
for i in range(len(values)):
    plt.text(x = i, y = values[i]+0.5, s = values[i], ha = 'center')

plt.show()

Reply to "Re: Untitled"

Here you can reply to the paste above