My very simple python function is returning \'None\' at the end of it and I\'m not sure quite why. I\'ve looked at some other posts and still can\'t figure it out. Any help
I came from Ruby as well and it seems strange at first.
If you print something that has a print statement in it, the last thing it returns is None.
print
None
If you just returned the values and then invoked a print on the function it would not output None.
Hope this helps :)