Define a function called getNRandomInt(n,N) that returns n random integers within 0 to N code example
Example: randint()
import random
print(random.randint(2, 8))
# This generates a random number from 2 to 8
import random
print(random.randint(2, 8))
# This generates a random number from 2 to 8