python中用hist模块进行作图时,如何使不同色块之间有明显的线的区分,而不是一整块

1.问题描述如上

import matplotlib.pyplot as plt
import numpy.random as npr

rn1 = npr.rand(500,3)
plt.figure(figsize = (6,4))
plt.hist(rn1,bins=25,stacked=True)

然后图片出来是这样的:

图片说明

求助能不能让色块有明显的区别

加入, rwidth=0.85