0
| HELP | Number cutter
How to make a number cutter. If I input 123456789, script will make a list with these unique numbers [1,2,3,4,5,6,7,8,9] then I can use one of this symbols
1 Odpowiedź
0
lst = [int(x) for x in list(input())]
How to make a number cutter. If I input 123456789, script will make a list with these unique numbers [1,2,3,4,5,6,7,8,9] then I can use one of this symbols