| HELP | Number cutter | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
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

15th Nov 2016, 11:50 AM
Xenonium Oxygen
Xenonium Oxygen - avatar
1 Respuesta
0
lst = [int(x) for x in list(input())]
15th Nov 2016, 1:32 PM
Demeth
Demeth - avatar