Python Forum
Help add for loop results in a list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help add for loop results in a list
#1
Hi all,

I'm new to Python. I have this :
>>> import xml.etree.ElementTree as ET
>>> xml_to_parse1 = ET.parse('/tmp/xmlfile.xml')
>>> get_xml = xml_to_parse1.getroot()
>>> for x in get_xml.findall('physicaldisk'):
...     diskType =x.find('diskType').text
...     print(diskType)
...
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
HardDisk
FlashDisk
FlashDisk
FlashDisk
FlashDisk
FlashDisk
FlashDisk
FlashDisk
FlashDisk
M2Disk
M2Disk
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
PMEM
>>>
I want add all these values (remove duplicate) to a LIST. How to do that in python?
Reply


Messages In This Thread
Help add for loop results in a list - by paulo79 - Mar-09-2022, 12:26 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  For Loop Returning 3 Results When There Should Be 1 knight2000 12 4,221 Sep-27-2021, 03:18 AM
Last Post: SamHobbs
  Appending to list of list in For loop nico_mnbl 2 2,398 Sep-25-2020, 04:09 PM
Last Post: nico_mnbl
  Search Results Web results Printing the number of days in a given month and year afefDXCTN 1 2,270 Aug-21-2020, 12:20 PM
Last Post: DeaD_EyE
  Append list into list within a for loop rama27 2 2,436 Jul-21-2020, 04:49 AM
Last Post: deanhystad
  Adding loop results as rows in dataframe Shreya10o 2 2,234 May-09-2020, 11:00 AM
Last Post: Shreya10o
  How to append one function1 results to function2 results SriRajesh 5 3,226 Jan-02-2020, 12:11 PM
Last Post: Killertjuh
  loop through list or double loop 3Pinter 4 3,491 Dec-05-2018, 06:17 AM
Last Post: 3Pinter
  Write a for loop on list of lists without changing the shape of the main list Antonio 3 3,800 Jun-19-2018, 02:16 AM
Last Post: ichabod801
  For looping over a list, editing the list from inside the loop? Krookroo 3 3,984 Sep-04-2017, 05:08 PM
Last Post: Krookroo
  How to change from printFacts ( ) to return a list & Loop over list when writing CSV Ivan1 14 8,433 Aug-30-2017, 12:14 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020