'I need to create a loop that prints a graph where each number in the list is shown by a number of characters. Here is an example:

numbers = [1,2,3,4]

results in

1: i

2: ii

3: iii

4: iiii

This is my code so far and I'm not sure where to go.

numbers = [1,2,3,4]

c = 0

for i in numbers:

    count += 1

print(len(numbers))


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source