I need help to create a function that generates 8 digit random numbers with 2 favorite number sequencing anywhere.
def favourite_number(first, second):
phone = random.randint(600000,699999)
generate = first,second,phone
return generate
print(favourite_number(8,6))
This is the result I am getting but I want it to be randomly placed anywhere not compulsorily in the beginning and that too without comma.
"C:\Users\WIN Ultimate\PycharmProjects\new\venv\Scripts\python.exe" "C:/Users/WIN Ultimate/PycharmProjects/new/Numbergenerator.py"
(8, 6, 699936)