Advertisement
wagner-cipriano

Python dynamic typing

Oct 10th, 2016
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #Python dynamic typing:
  2. from __future__ import print_function      #Compatibilidade func print python 2/3
  3.  
  4. Custumer = 1461
  5. CustumerName = GetCustumerNameById(Custumer)
  6. Custumer = 'Cefet'
  7. CustumerId = GetCustumerIdByName(Custumer)
  8. print (CustumerId, CustumerName)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement