Python Forum
python3 List to array or string to extract data
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
python3 List to array or string to extract data
#3
Just to make things clear:

>>> poly = ([[[32.098659, 34.826334], [32.099361, 34.830506], [32.097026, 34.831574], [32.095502, 34.827881]]],)
>>> type(poly)
tuple
>>> len(poly)
1
>>> type(poly[0])
list
>>> len(poly[0])
1
>>> type(poly[0][0])
list
>>> len(poly[0][0])
4
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
RE: python3 List to array or string to extract data - by perfringo - May-28-2019, 12:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with to check an Input list data with a data read from an external source sacharyya 3 622 Mar-09-2024, 12:33 PM
Last Post: Pedroski55
  Python3 string slicing Luchano55 4 771 Feb-17-2024, 09:40 AM
Last Post: Pedroski55
  Is it possible to extract 1 or 2 bits of data from MS project files? cubangt 8 1,346 Feb-16-2024, 12:02 AM
Last Post: deanhystad
  extract substring from a string before a word !! evilcode1 3 686 Nov-08-2023, 12:18 AM
Last Post: evilcode1
  Why can't it extract the data from .txt well? Melcu54 3 779 Aug-20-2023, 10:07 PM
Last Post: deanhystad
Question Need help for a python script to extract information from a list of files lephunghien 6 1,254 Jun-12-2023, 05:40 PM
Last Post: snippsat
  extract only text strip byte array Pir8Radio 7 3,286 Nov-29-2022, 10:24 PM
Last Post: Pir8Radio
  Extract value from a list thesquid 2 939 Nov-29-2022, 01:54 PM
Last Post: thesquid
  python Extract sql data by combining below code. mg24 1 1,045 Oct-03-2022, 10:25 AM
Last Post: mg24
  SQL Alchemy help to extract sql data into csv files mg24 1 1,953 Sep-30-2022, 04:43 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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