Python programming: How would I remove redundant or repeated values in a list of printed values? Also, how could I reorganize printed values so they go in order?
Do you mean how would you only print out specific indexes in a list ?
http://stackoverflow.com/questions/479897/how-do-you-remove-duplicates-from-a-list-in-python
Not exactly from a list, but a group of numbers I've already printed out.
So filtering an outputted string?
exactly, except its not a string. python has already printed out a group of numbers into the GUI. I want to organize that group.
you can learn Python on http://www.thenewboston.com/ and http://www.khanacademy.org/
I don't know of any way to use a print statement as a return. I think you may have to go to the source of the problem and change the print statement to a return. Change: print <answer> to return <answer> have the parent of the function then collect the info in a variable, format that variable, then print it out.
Join our real-time social learning platform and learn together with your friends!