python
def convert_n_t_a(in_str): arr = list(in_str) arr.reverse() return arr # -------------- print convert_n_t_a('348597') print convert_n_t_a('6581554') print convert_n_t_a('123456') print convert_n_t_a('987123')
dude, I don't think the input to the function is a string.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Where hackers, sticks, weekend warriors, pros, architects and wannabes come together
python
dude, I don't think the input to the function is a string.