How to name list of lists in Python?

Technologic27

I have the following list of lists:

sims1 = [[(2, 0.90452874), (1, 0.83522302), (4, 0.77591574), (0, 0.72705799), (3, 0.52282226)],
         [(3, 0.79298556), (1, 0.78112978), (2, 0.76006395), (0, 0.58570701), (4, 0.40093967)],
         [(2, 0.9549554),  (1, 0.71705657), (0, 0.58731651), (3, 0.43987277), (4, 0.38266104)],
         [(2, 0.96805269), (4, 0.68034023), (1, 0.66391909), (0, 0.64251828), (3, 0.50730866)],
         [(2, 0.84748113), (4, 0.8338449),  (1, 0.61795002), (0, 0.60271078), (3, 0.20899911)]]

I would like to name each list in the list according to these strings: url = ['a', 'b', 'c', 'd']. So for example,

>>> a
[(2, 0.90452874), (1, 0.83522302), (4, 0.77591574), (0, 0.72705799), (3, 0.52282226)]
>>> b 
[(3, 0.79298556), (1, 0.78112978), (2, 0.76006395), (0, 0.58570701), (4, 0.40093967)]

etc. So how do I accomplish this in Python?

DurgaDatta

You can use dictionary:

names = ['a', 'b', 'c', 'd', 'e']
named_sims1 = dict(zip(names, sims1))
print(named_sims1['a'])

If you want to access the variables as a instead of x.a or x['a'], you can use this:

exec(",".join(names) + ' = ' + str(sims1)) # ensure same length

But I am not sure, if this is recommended.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to flatmap list of lists of lists of tuples in Python?

From Dev

How to reverse a list of lists in python?

From Dev

How to copy a list of lists in Python?

From Dev

How to reverse a list of lists in python?

From Dev

Python - How to sort a list of lists by last element of another list of lists?

From Dev

Python: how to group similar lists together in a list of lists?

From Dev

How to write List of lists in csv file in python

From Dev

Python - How to delete the last element in a list of lists?

From Dev

Python: How to loop a list of lists of varying depth?

From Java

How to outer join list of lists in Python?

From Dev

Python - How to remove duplicate tuples in a list of lists?

From Dev

How to write list of lists to CSV file Python?

From Dev

Python: how to simultaneously add two lists to a list?

From Dev

python how to write list of lists to file

From Dev

How can I rotate this list of lists with python

From Dev

How to convert several lists to a list of dicts in python?

From Dev

How to write list of lists to CSV file Python?

From Dev

Python - How to delete the last element in a list of lists?

From Dev

python how to write list of lists to file

From Dev

How to Make A Combination of Lists of A List in Python

From Dev

How to remove spaces from list of lists in Python?

From Dev

How to delete the repeated lists in a list using python

From Dev

Python list to list of lists

From Dev

Python list to list of lists

From Dev

Python: How do you add a list to a list of lists in python?

From Dev

How to unzip lists in lists in a list

From Dev

How to convert nested list of lists into a list of tuples in python 3.3?

From Dev

Python: How to remove a list containing Nones from a list of lists?

From Dev

How to convert a two nested list of lists into a nested list of tuples in Python?

Related Related

  1. 1

    How to flatmap list of lists of lists of tuples in Python?

  2. 2

    How to reverse a list of lists in python?

  3. 3

    How to copy a list of lists in Python?

  4. 4

    How to reverse a list of lists in python?

  5. 5

    Python - How to sort a list of lists by last element of another list of lists?

  6. 6

    Python: how to group similar lists together in a list of lists?

  7. 7

    How to write List of lists in csv file in python

  8. 8

    Python - How to delete the last element in a list of lists?

  9. 9

    Python: How to loop a list of lists of varying depth?

  10. 10

    How to outer join list of lists in Python?

  11. 11

    Python - How to remove duplicate tuples in a list of lists?

  12. 12

    How to write list of lists to CSV file Python?

  13. 13

    Python: how to simultaneously add two lists to a list?

  14. 14

    python how to write list of lists to file

  15. 15

    How can I rotate this list of lists with python

  16. 16

    How to convert several lists to a list of dicts in python?

  17. 17

    How to write list of lists to CSV file Python?

  18. 18

    Python - How to delete the last element in a list of lists?

  19. 19

    python how to write list of lists to file

  20. 20

    How to Make A Combination of Lists of A List in Python

  21. 21

    How to remove spaces from list of lists in Python?

  22. 22

    How to delete the repeated lists in a list using python

  23. 23

    Python list to list of lists

  24. 24

    Python list to list of lists

  25. 25

    Python: How do you add a list to a list of lists in python?

  26. 26

    How to unzip lists in lists in a list

  27. 27

    How to convert nested list of lists into a list of tuples in python 3.3?

  28. 28

    Python: How to remove a list containing Nones from a list of lists?

  29. 29

    How to convert a two nested list of lists into a nested list of tuples in Python?

HotTag

Archive