#!/usr/bin/python3

x = (n for n in [1,2,3]) #makes a generator
x = n for n in [1,2,3] #syntax error 
