Re: [Tutor] installation of Python 2.7 an 3.6, feedback

2017-12-24 Thread Alan Gauld via Tutor
On 24/12/17 15:36, marcus lütolf wrote: while working through Alan C. Gould‘s excellent update on‘ Learning to Program‘ I copied OK, First I need to point out that the tutorial content has not changed, it is still the old c2010-12 material. The update is to the structure and cosmetics to ma

[Tutor] installation of Python 2.7 an 3.6, feedback

2017-12-24 Thread marcus lütolf
dear experts, while working through Alan C. Gould‘s excellent update on‘ Learning to Program‘ I copied the file echoinput.py from the ‚Conversing with the user‘ section: import sys inp = sys.stdin.readline() while inp.strip != '': print(inp) inp = sys.stdin.readline()