Question: 
Write a function to separate and print the numbers and their position of a given string.


Model's Code:
def num_position(s):
    for i, char in enumerate(s):
        if char.isdigit():
            print(f"Number: {char}, Position: {i}")
    return len(s)



Sample Correct Code:
import re
def num_position(text):
 for m in re.finditer("\d+", text):
    return m.start()


Asserts:
assert num_position("there are 70 flats in this apartment")==10
assert num_position("every adult have 32 teeth")==17
assert num_position("isha has 79 chocolates in her bag")==9


Tests:
Test 1 of 3: FAIL: AssertionError()

Test 944 of 974: 724/944 (76.69491525423729%): failed