0

I need something to print the function draw() in one line for all i in the loop. I've searched here, but couldn't find anything.

def many(n):
   b = str(n)
   c=[]
   x=[]
   for digit in b:
    c.append (int(digit))
   for i in range(len(c)):
      draw(c[i])
martineau
  • 112,593
  • 23
  • 157
  • 280

0 Answers0