Learn python book

Hello, Can you give some titles of good books for beginner with python??
English and French if it exist…?
Thank you!

For rhino there are many samples here:

“Automate the boring stuff with python” is widely recommended. It exists as a book and as an online course.

Free signup link for the course here (I don’t know when it will expire)

image https://t.co/cQJceffH1Z?amp=1

Ok, but it’s for python 3, when does rhino will use python 3?

Actually Rhino uses IronPython - the main reason being to use RhinoCommon. So, You need a book for IronPython.

They are very similar really, especially if you use the future module for improved compatibility.

from __future__ import division, print_function, absolute_import

The codecademey course for python 2 is free, and pretty good.

As far as I know there are no current plans to integrate Python 3 (CPython) in Rhino but it hasn’t been ruled out. Ironpython 3 is under active development so that may appear some day. Rhino Inside python and Rhino3dm are alternative ways of integrating rhino with python but it sounds like you are looking to script rhino, in which case Ironpython 2 is your best bet at the moment.

So the best for me is https://developer.rhino3d.com/guides/rhinopython/

And you!!!

" IronPython3 is NOT ready for use yet. There is still much that needs to be done to support Python 3.x. We are working on it, albeit slowly. We welcome all those who would like to help!"
This started in 2016 …

And has considerably picked up speed over recent months, though I personally wouldn’t base my development plans on it ever being ready. It’s alright anyway, they still have over 24 hours before Python 2 official end of life.

The first steps in supporting Python 3: