Re: [Tutor] Importing XML files.

2019-01-21 Thread mhysnm1964
Peter and Alan, Peter, Thanks for the information. The library did the trick and I can get access to the XML content. Alan, thanks for the explanation of the tree structure. I was aware of this already for HTML and XML. Just didn't understand the terminology used from the XML library. The tuto

Re: [Tutor] Importing XML files.

2019-01-21 Thread Peter Otten
mhysnm1...@gmail.com wrote: > I am trying to import ITunes XML files. I have been doing some reading and > I am somewhat confused with some XML terminology. > What is: > > > > Tag – I think it is the in the itunes library file. > > Text = The text between the > > Attrib -- don’t know. >

Re: [Tutor] Importing XML files.

2019-01-21 Thread Alan Gauld via Tutor
On 21/01/2019 03:17, mhysnm1...@gmail.com wrote: > confused with some XML terminology. > > What is: > Tag – I think it is the in the itunes library file. > > Text = The text between the > > Attrib -- don’t know. You really need to find a tutorial on XML (And maybe even start with one on HTML

[Tutor] Importing XML files.

2019-01-21 Thread mhysnm1964
All, I am trying to import ITunes XML files. I have been doing some reading and I am somewhat confused with some XML terminology. What is: Tag – I think it is the in the itunes library file. Text = The text between the Attrib -- don’t know. If I am correct in my thinking. If y

Re: [Tutor] Function not using updated variable?

2019-01-21 Thread Alan Gauld via Tutor
On 21/01/2019 00:14, Ello Solcraft wrote: > # currLocation doesn't use the updated variable. > > for x in inputList: > > currCalc.append(x) > currCalc2 = ''.join(currCalc) > currLocation = mapLocation(mapInput(currCalc2))#mapInput(currCalc2)) You haven't hgiven us any inf