0

So I have these lines in python

l=list("09073146864462346440228042814284764104460294046232864221188427140442613004261248")

print("There is ",l.count("1"+"2"+"3"+"4"+"5"+"6"+"7"+"8"+"9"+"0")," Numbers in it")

I want it to count as separate the output would be like there is 50 numbers here.

AcK
  • 2,063
  • 2
  • 20
  • 27
MAKO
  • 13
  • 2

1 Answers1

0

So im told it was len() function so it is solved thanks* the code should be

l=list("09073146864462346440228042814284764104460294046232864221188427140442613004261248")

print("There is ",len(l)," Numbers in it")
MAKO
  • 13
  • 2