How do i input a three digit number from the user and assign 3 different variables to the three digits:
>>> Numbers = int(input("Enter a 3 digit number : "))
Enter a 3 digit number : 411
now i want to assign the digits 4 to say x, 1 to y and 1 to z. Any tips?