Hi I'm working on a login app in python, and i wrote this function:
def register_login():
user_choice = input(print("Would you like to login or register?"))
user_choice.lower()
if user_choice == "login":
print("You will be redirected to the login window.")
elif user_choice == "register":
print("You will be redirected to the registration window.")
But whenever i call this function the message gets printed with the value None under it. Is there a way to get rid of the None message?