Aug-07-2019, 01:41 PM
return cookies()With the presented while-loop you don´t need this, as it is also not good coding.
You are calling the function cookies, ok atm there is only a print in it and as there is no return statement in cookies this function returns the default value None.
And this value None is returned to your program root.
But in your root you are already calling cookies() after user() is finished.