Giter Site home page Giter Site logo

Comments (1)

ageron avatar ageron commented on May 2, 2024

Hi @dataforager,

Thanks for your feedback! Indeed, I wrote this code for Python 3, which defaults to float division. However, everything should work fine in Python 2 as well if you add the following line at the beginning of your Python files:

# To support both python 2 and python 3
from __future__ import absolute_import, division, print_function, unicode_literals

The Jupyter notebooks include this line at the very beginning, so they actually work fine in both Python 2 and 3.

Since Python 2 is now deprecated, I recommend switching to Python 3, or at least preparing for it. One way to prepare for migration is to start writing code that works on both Python 2 and Python 3. Some libraries like six or future can help a lot. In fact, I recommend you go through this excellent Python 2/3 compatibility cheat sheet. It shows how to write code that works on both Python 2 and 3.

The starting point is to add the from __future__ line above at the beginning of all your Python files, then run your tests and fix all the errors you find: you will likely need to replace a few / with // if you expect integer division, you will need to fix all your print statements (e.g. replace print "hi" with print("hi"), and so on), and most importantly you will need to fix a bunch of unicode vs byte string errors. But once that's done your code will be much easier to migrate to Python 3, when the time comes.

That said, I think you are right that the book should mention this fact. Right now it just says "The latest version of Python 3 is recommended. Python 2.7+ should work fine too, but it is deprecated." I will add "If you use Python 2, you must add from __future__ import division, print_function, unicode_literals at the beginning of your Python files."

I hope this helps,
Aurélien

from handson-ml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.