1
0
forked from tdwojak/Python2017
Python2017/labs03/task03.py

4 lines
102 B
Python
Raw Normal View History

2017-12-16 00:02:00 +01:00
import requests
r = requests.get('https://api.fixer.io/latest')
j=r.json()
print(j['rates']['PLN'])