def histogram(n): for x in range(0,len(n)): print '*' * n[x]; return;