jakevdp / WhirlwindTourOfPython

The Jupyter Notebooks behind my OReilly report, "A Whirlwind Tour of Python"
Creative Commons Zero v1.0 Universal
3.72k stars 1.61k forks source link

Typo: i instead of val. Chapter 11 List Comprehensions #16

Open AlessandroVol23 opened 6 years ago

AlessandroVol23 commented 6 years ago

Chapter 11 List Comprehensions: Conditionals on the iterator.

The expression (i % 3 > 0) evaluates to True unless val...

I think there should be val instead of i.

image