Advertisement
albin900

Untitled

Jun 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. class Currency:
  2.     def __init__(self, currency):
  3.         self.currency = currency
  4.         self.price = 0
  5.  
  6. currencies = [ Currency("LTC"), Currency("BTC"), Currency("USD") ]
  7.  
  8. for currency in currencies:
  9.     price = apiprice( currency.currency)
  10.     currency.price = price
  11.  
  12.  
  13. for currency in currencies:
  14.     print currency.price
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement