How do I split a list into sub-lists, and then further split that to make each character an independent value?
I need to do this all inside of Python, version 3.6.5. The list will be in integers.
I need to convert
[123, 456]
into
[[1,2,3], [4,5,6]]
EDIT:
And after I have done that, how do I print the first character of the first sublist?
Note: Splitting integer in Python? and Turn a single number into single digits Python don't solve or answer my problem, as they do not explain how to make sub-lists out of them.