- Python 2 https://nbviewer.ipython.org/github/jmportilla/Complete-Python-Bootcamp/tree/master/ 3 / 2 = 1 3 / 2.0 = 1.5 float(3) / 2 = 1.5 Another method is using from __future__ import division >>> 3/2 1.5 Python 3 doesn't need to use import - Strings Python 3 from __future__ import print_function print('Hello World') vs Python 2 print 'Hello world' len(' ') checks string length s = 'Hello World' # Grab everything past the first term all the way to the length of s which is len(s) s[1:] => "ello World' # Grab everything UP TO the 3rd index s[:3]=> 'Hel' #Everything s[:] => 'Hello World' # Grab everything, but go in step sizes of 2 s[::2] => 'HloWrd' # We can use this to print a string backwards s[::-1] => 'dlroW olleH' - Python 2 More Strings s = 'STRING' 1. print 'Place another string with a mod and s: %s' %(s) Place anothe...