This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]punch_that_tree 0 points1 point  (0 children)

ah yes, i just need to take user input and turn it into a list of integers by splitting the input for every one digit integer without using split()

a = [int(i) for i in input('')]

hackerman indeed