My task is doing a base converter. I thought of switching it to base 10 and then switch it to the wanted base. So I want to get a string and them put it in a list, and slice it and after that to use the sliced parts:
s=input()
NumList=[s]
NumList[::]
Is there any way of doing it? Do you have any better idea?