t318.trans 1.0 KB

12345678910111213141516171819202122
  1. Module(body=[Assign(targets=[Name(id='fpexp',
  2. ctx=Store())],
  3. value=Str(s='( 1 + 1 )')),
  4. Assign(targets=[Name(id='fplist',
  5. ctx=Store())],
  6. value=Call(func=Attribute(value=Name(id='fpexp',
  7. ctx=Load()),
  8. attr='split',
  9. ctx=Load()),
  10. args=[],
  11. keywords=[],
  12. starargs=None,
  13. kwargs=None)),
  14. For(target=Name(id='i',
  15. ctx=Store()),
  16. iter=Name(id='fplist',
  17. ctx=Load()),
  18. body=[Print(dest=None,
  19. values=[Name(id='i',
  20. ctx=Load())],
  21. nl=True)],
  22. orelse=[])])