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
  • 119,623
  • 25
  • 170
  • 301

0 Answers0