import xml.etree.ElementTree as et
import requests
url = 'http://www.cbr.ru/scripts/XML_daily.asp'
root = et.fromstring(requests.get(url).content)
for item in root.findall('.//Valute'):
ids = print(item.attrib.get('ID'))
if ids:
pass
else:
continue
for s in root.findall(".//[@%s]" %ids):
print(s)//нужно чтобы тут выводились все данные о валюте для каждого id по отдельности