1. file_input 2. single_input 3. eval_input 4. stmt 5. if_stmt>>> if x < 0:... x = 0... print 'Negative changed to zero'... elif x == 0:... print 'Zero'... elif x == 1:... print 'Single'... else:... print 'More' 6. while_stmt>>> # Fibonacci series: ... # the sum of two elements defines the next... a, b = 0, 1>>> while b < 10:... print b... a, b = b, a+b 7. for_stmt>>> # Measure some strings:... a = ['cat', 'window', 'defenestrate']>>> for x in a:... print x, len(x) 8. with_stmt 9. decorator 10. classdef 11. funcdef 12. small_stmt 13. expr_stmt 14. flow_stmt 15. import_stmt 16. import_from 17. import_as_names 18. try_stmt 19. except_clause 20. typedargslist 21. name_test 22. tfpdef 23. test 24. suite 25. arglist 26. argument 27. varargslist 28. name_test_list 29. yield_expr 30. or_test 31. expr 32. atom 33. testlist_comp 34. dictorsetmaker 35. trailer 36. subscript 37. dotted_as_names 38. comp_for 39. test_nocond