Legend format – make bold border, or bigger / different font

Does anyone have a simple way to change the size of the legend to make it larger or make the border bold? a-o are just random ints group_a = (a,b,c,d,e) group_b = (f,g,h,i,j) group_c = (k,l,m,n,o) width = 0.2 x = np.arange(5) plt.bar(x-0.2, group_a, width, color = ‘cyan’) plt.bar(x, group_b, width, color = ‘orange’) plt.bar(x+0.2, … Read more

.doc to pdf using python

I’am tasked with converting tons of .doc files to .pdf. And the only way my supervisor wants me to do this is through MSWord 2010. I know I should be able to automate this with python COM automation. Only problem is I dont know how and where to start. I tried searching for some tutorials but was not able to find any (May be I might have, but I don’t know what I’m looking for).