programming-examples/python/_Basics/Create a histogram from a given list of integers.py

10 lines
237 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def histogram( items ):
for n in items:
output = ''
times = n
while( times > 0 ):
output += '*'
times = times - 1
print(output)
histogram([2, 3, 6, 5])