Hi
I'm new to Python and the book I'm using was designed for an older version of Python and consequently there are some examples in the textbook that don't work in 3.1. My first problem is with the following simple example:
num1, num2 = input(" Please enter two numbers (num1, num2):")
I get the following error:
ValueError: too many values to unpack
What is the new way of doing this?
Also, is there a pdf document or a website that lists the full changes just to make it easier to learn Python?
Thanks