I want to parse an xml, but I can't find any good tutorials.
import urllib.request
import xml.etree.ElementTree as ET
with urllib.request.urlopen('http://www.nbp.pl/kursy/xml/lastA.xml') as response:
lasta = response.read()
What exactly is lasta
. Is it still xml or a string or something else?