Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Parse data from xml file
#10
Maybe this helps:

#!/usr/bin/python3

def cleanaa(a):
    cleana = a[0] if a != [] else ''
    return cleana 

[x, *y] = ['UKRAINE-EO13662']
print(x, cleanaa(y))

[x, *y] = ['SYRIA', 'UKRAINE-EO13662']
print(x, cleanaa(y))
Reply


Messages In This Thread
Parse data from xml file - by klllmmm - Jun-06-2019, 01:27 AM
RE: Parse data from xml file - by heiner55 - Jun-06-2019, 04:41 AM
RE: Parse data from xml file - by klllmmm - Jun-07-2019, 04:06 PM
RE: Parse data from xml file - by heiner55 - Jun-07-2019, 04:22 PM
RE: Parse data from xml file - by klllmmm - Jun-07-2019, 05:00 PM
RE: Parse data from xml file - by heiner55 - Jun-07-2019, 05:17 PM
RE: Parse data from xml file - by klllmmm - Jun-08-2019, 01:46 AM
RE: Parse data from xml file - by heiner55 - Jun-08-2019, 02:56 AM
RE: Parse data from xml file - by klllmmm - Jun-19-2019, 06:43 AM
RE: Parse data from xml file - by heiner55 - Jun-25-2019, 05:14 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  parse json field from csv file lebossejames 4 764 Nov-14-2023, 11:34 PM
Last Post: snippsat
  parse/read from file seperated by dots giovanne 5 1,125 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
  Trying to parse only 3 key values from json file cubangt 8 3,495 Jul-16-2022, 02:05 PM
Last Post: deanhystad
  how to parse data fakka 2 1,498 Sep-22-2021, 10:50 PM
Last Post: bowlofred
  xml file creation from an XML file template and data from an excel file naji_python 1 2,123 Dec-21-2020, 03:24 PM
Last Post: Gribouillis
  Parse BytesIO data GrahamL 2 2,177 Aug-19-2020, 05:09 PM
Last Post: bowlofred
  How to save CSV file data into the Azure Data Lake Storage Gen2 table? Mangesh121 0 2,114 Jun-26-2020, 11:59 AM
Last Post: Mangesh121
  Parse encrypted xml file to csv Mekala 2 2,239 May-30-2020, 12:23 AM
Last Post: Mekala
  How can i parse a log file to JSON. menarcarlos 2 2,440 May-26-2020, 10:23 AM
Last Post: buran
  command line input (arg parse) and data exchange Simba 7 4,338 Dec-06-2019, 11:58 PM
Last Post: Simba

Forum Jump:

User Panel Messages

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