Anis Boudieb
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 1
Comments
Recent activity by Anis Boudieb-
I have two lists: Costs = [2, 3, 1, 0...]list3 = [('287','128'), ('292','129'), ('271','130'), ('272','131')...] I am using this code below to assign the cost to each combination. (I have more than...
-
Hi Eli, I have another question please. How I store the costs related to each variable. By using multidict(), I am attributing costs to each variable as: combinations, ms = multidict({k: v for k, ...
-
Hi Eli, I used the list comprehension as you said and my combinations have been stored. Thank you for you help.