Python Forum
convert set to a list type in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
convert set to a list type in python
#2
Quote:convert set to a list type in python
>>> hh = {2, 4, 6, 8, 10}
>>> type(hh)
<class 'set'>
>>> hh = list(hh)
>>> type(hh)
<class 'list'>
firaki12345 likes this post
Reply


Messages In This Thread
RE: convert set to a list type in python - by Larz60+ - Feb-05-2021, 03:30 PM
RE: convert set to a list type in python - by buran - Feb-05-2021, 03:45 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Q. Nested for statement in list type ives 3 3,231 Mar-14-2018, 07:30 AM
Last Post: Larz60+
  how to edit data frames and convert to a list(pandas, read_html()) ? donvirte 3 4,382 Feb-02-2018, 03:23 PM
Last Post: snippsat
  convert list compression to for loop Prince_Bhatia 5 5,074 Oct-09-2017, 10:42 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

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