These are notes as I do morning warm-up with Python on CodeWars.
Python != Ruby
(duh)
Some major differences off the bat:
Return values in Ruby are implicitly tied to the last line of code run. Return values in Python need to be explicit. If you don’t tell Python to return something, it..won’t.
Python methods always take an argument, even if its an empty parenthesis. There is no ‘end’ block. Also, put a colon on the first line. Keep spacing consistent. If you use one tab, always use one…

