[code.view]

[top] / python / PyMOTW / dis / dis_constant_folding.py

     #!/usr/bin/env python
     # encoding: utf-8
     
     # Folded
     i = 1 + 2
     f = 3.4 * 5.6
     s = 'Hello,' + ' World!'
     
     # Not folded
     I = i * 3 * 4
     F = f / 2 / 3
     S = s + '\n' + 'Fantastic!'

[top] / python / PyMOTW / dis / dis_constant_folding.py

contact | logmethods.com