xxxxxxxxxx
for key, value in dict.iteritems():
temp = [key,value]
dictlist.append(temp)
xxxxxxxxxx
fruits = ["Apple", "Pear"]
# Create a dictionary using as keys the values in fruits list
fruit_dictionary = dict.fromkeys(fruits, "In Stock")
print(fruit_dictionary) # {'Apple': 'In Stock', 'Pear': 'In Stock'}
# Alternatively, dictionary comprehension can be used for same purpose
fruit_dictionary = { fruit : "In stock" for fruit in fruits }
print(fruit_dictionary) # {'Apple': 'In Stock', 'Pear': 'In Stock'}
xxxxxxxxxx
The zip() function is used to combine two or more iterables into a single iterable of tuples. Here is the syntax:
my_list1 = ["apple", "banana", "cherry"]
my_list2 = [1, 2, 3]
my_dict = dict(zip(my_list1, my_list2))
print(my_dict)
#Output
{'apple': 1, 'banana': 2, 'cherry': 3}
I hope it will help you. Thank you :)
For more refer link: https://www.programmingquest.com/2023/03/simplify-your-code-how-to-convert-lists.html
xxxxxxxxxx
a = [10,20,30]
b = [100,200,300]
my_dictionary = dict(a=a, b=b)