unhashable type 'list'. TypeError: unhashable type: 'matrix' [closed] Ask Question Asked 6 years, 5 months ago. unhashable type 'list'

 
TypeError: unhashable type: 'matrix' [closed] Ask Question Asked 6 years, 5 months agounhashable type 'list' 10

asked Nov 7, 2015 at 8:59. I am guessing it has something to do with df because it works when I am not using data that was loaded in. "TypeError: unhashable type: 'list'" yet I'm trying to only slice the value of the list, not use the list itself. using this code: def create_from_arr (): baby_array=pd. Improve this question. On the other hand, unhashable types are those which do not have a constant hash value and cannot be used as keys in dictionaries or elements in sets. Hash values are a numeric constructs that can’t change and thus allows to uniquely identify each object. count(list(t)) > 1} unique_set = seen_set - duplicate_setTypeError: unhashable type: 'numpy. 위와 같이 코딩하게 된다면, 위에서 나온 에러 (TypeError: unhashable type: 'list')를 만날 수 있다. To resolve the TypeError: unhashable type: numpy. The error: TypeError: unhashable type: ‘list’ occurs when trying to get the hash value of a list. Mar 12, 2015 at 1:44. 1. The objects in python which are immutable and have a hash value are called hashable and which are mutable and don’t have a hash value are called unhashable. 1 Answer. A dict (recent python 3. This is a list: If so, I'll show you the steps - how to investigate the errors and possible solution depending on the reason. You need to use a hashable collection instead, like a tuple. 12:26. So this does not work: >>> dict_key = {"a": "b"} >>> some_dict [dict_key] = True Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unhashable type: 'dict'. Operating system and version: Ubuntu 19. homePSDpath = os. len () == 0). How to lemmatize a list of sentences. You are returning a list to something that expects a hashable type, like an int, a string or a tuple of hashable types. However elem need to be something hashable. Using pandas group operations. keys or dict. Symmetric difference of two pandas dataframes. A list can contain different data types and other container objects such as a list, tuple, set, or dictionary. I am trying to write a little script that will look at a string of text, remove the stop words, then return the top 10 most commonly used words in that string as a list. I am looking to get all times which for each user takes to watch each screen. I tried the other answers but they didn't solve what I needed (large dataframe with multiple list columns). Wrapping an unhashable type in a tuple doesn't make it hashable. 7 dictionaries are considered ordered data. Do you want to pick values for id and phone from "id" : ["5630baac3f32df134c18b682","564b22373f32df05fc905564. Generally, the cause of the unhashable “TypeError” in Python is when your code is directly or indirectly trying to hash an unhashable data type like lists and Pandas “Series”. In your case it looks like results is a dict containing list objects, which are not hashable. Modified 5 years, 6 months ago. TypeError: unhashable type: 'set' sage: s = X. Hashable objects which compare equal must have the same hash value. You are using list as an key in the dictionary. I was trying to set index with column A and column C (multiindex) in order to explode columns B,D,E only. In other words, unless you really really really know what you are. DataFrame'> RangeIndex: 4637 entries, 0 to 4636. This is only a problem if your row. Unhashable type list errors; Options. You signed in with another tab or window. str. __doc__) Create a new dictionary with keys from iterable and values set to value. Also, nested lists might needed to be flattened. drop_duplicates hashes the objects to keep track of which ones have been seen or not, efficiently. setparams. from typing vs directly referring type as list/tuple/etc 82 TypeError: unhashable type: 'list' when using built-in set functionUse something like df[df. This question has been flagged. A python List transactions is mutable, therefore you cant use it as a key return_dict[transactions]. The problem is that list() items are not hashable. TypeError("unhashable type: 'dict'") Hot Network Questions Lighter than air vs heavier than air? Is it illegal for King Charles not to vote in Australia? Locking myself from ever changing license Company is making my position redundant due to cost cutting but asking me to. dict, set ). They are unhashable only if they contain at least one mutable item. You need to use a hashable collection instead, like a tuple. Why Python TypeError: unhashable type: 'list' Hot Network Questions Is a buyout of this kind of an inheritance even an option? Why do most French cities that have more than one word contain dashes in them?. Python Dict requires keys to be immutable (i. Reload to refresh your session. If the dict you wish to use as key consists of only immutable values, you. 16. uniquePathsHelper (obstacleGrid,start. Since json_dumps requires a valid python dictionary, you may need to rearrange your code. ] What do we do then? Once you know the trick, it’s quite simple. Internally, GroupBy relies on hashing. TypeError: unhashable type: 'list' df_data = df[columns] Hot Network Questions Game Theory / Probability Interview question Maintaining a parallel fork of a project that contains the original authors' company name A question of random points in a square and probability of intersection of their line segments. If you are sure that this code worked in Python 2, print results to see its content. logging_level_ENUM = ('critical', 'error', 'warning', 'info', 'debug') Basically, when you create a dictionnary in python (which is most probably happening in your call to the ENUM function), the keys need to be. Do you want to pick values for id and phone from "id" :. Here’s a plot of execution time for various Fibonacci numbers. 12. 1248行6列のデータで学習させようとしています。. Iterate and Lemmatize List. Improve this question. This question needs debugging details. g. Main Code: Checking the unique values &amp; the frequency of their occurence def uniq_fu. Q&A for work. Repeat this until the size of the list is 100. Improve this question. product. In DefaultPlot. 02-25-2013 11:43 AM. The main difference is that tuples are immutable (cannot be modified after initiation). MultiIndex. In your case it looks like results is a dict containing list objects, which are not hashable. I have 2 questions for the Python Guru's: a) When I look at the Python definition of Hashable -. The fourth key is problematic. Returns a graph from Pandas DataFrame containing an edge list. Newcomers to Python often wonder why, while the language includes both a tuple and a list type, tuples are usable as a dictionary keys, while lists are not. Mi-Creativity. 2. Keys are the identifiers that are bound to a value. . Is this works OK?Python: TypeError: unhashable type: 'list' when groupby list. dumps (temp_dict, default = date_handler) Otherwise, if l_user_type_data is a string for the key, just. pandas: TypeError: unhashable type: 'list' 1. 4. Looking at where you might be using list as a hash table index, the only part that might do it is using mode. The unhashable part refers to the key only. Since it is unhashable, a Series object is not a good fit for any of these. Connect and share knowledge within a single location that is structured and easy to search. Here is one way, by turning your series of lists into separate columns, and only keeping the non-duplicates: df [~df [0]. When you save and load the data, chances are that it is converted to string, which enables the hash to be calculated. deepcopy(domain) You may have to do the same wherever var is used as a dictionary key. Diving into the details. Someone suggested to use isin (and then deleted the. python; pandas; dataframe; Share. 3. 03:07 So now that you know what immutable and hashable mean, let’s look at how we can define sets. Immutable Data Types: The built-in hash() function works natively with immutable data types like strings, integers, floats, and tuples. 1 Answer. xlsx', sheet_name='my_sheet') Or for first: df = pd. ndarray' when trying to create scatter plot from dataset. 1 # Unhashable type (dict) 2 my_dict = {'Name': 'Jim', 'Age': 26} ----> 3 print (hash (my_dict)) TypeError: unhashable type: 'dict'. Why Python TypeError: unhashable type: 'list' Hot Network Questions Exploring the Concept of "No Mind" in Eastern Philosophy: An Inquiry into the Foundations and Implications 1 # Unhashable type (list) 2 my_list = [1, 2, 3] ----> 3 print (hash (my_list)) TypeError: unhashable type: 'list'. keys()の戻り値は下記のようになるが、(多分)これが純粋なlistではない故に発生するエラーなのに、エラー内容がTypeError: unhashable type: 'list'というのは分かりづらい…。If an object has logical equality, updating that object would change its hash, violating rule 2. Python version used: Python 3. (Column C should be excluded for explosion for one of its elements has different size)For a current research project, I am planning to read the JSON object "Main_Text" within a pre-defined time range on basis of Python/Pandas. So in your for j in a:, you are getting item from outer list. apply (len) == 0). The key of a dict must be hashable. kind {‘quicksort’, ‘mergesort’, ‘heapsort’, ‘stable’}, default ‘quicksort’Python初学者之TypeError: unhashable type: 'list' 创建一个比较复杂的参数的时候,将参数定义成了一个字典,然后格式化了一下,报错TypeError: unhashable type: 'list'Teams. apply (pandas. Modified 1 year, 1 month ago. getCostOfActions(self. A list on the other hand is mutable: one can later add/remove/alter elements. head() produces the error: TypeError: unhashable type: 'list' If instead you had tuples as the data then you can groupby that column, you can convert by doing the following: In [454]:TypeError: unhashable type: ‘dict’. So you can't use drop_duplicates because dicts are mutable and not hashable. lst = [1, 2, 3] tup = tuple (lst) Keep in mind that you can't change the elements of a tuple after creation, such as; tup [0] = 1. 2+ (default, Oct 9 2013, 14:50:09) >>> from collections import Counter >>> results = {1: [1],. TypeError: unhashable type: 'list' I don't understand the problem because the list is fine. 0. Ok, thanks for updating the question with the full code and traceback. Follow edited Nov 26, 2021 at 20:21. Mark. 出てしまいうまく出来ません。. ]. 6. python perform an operation by group. 由于元组(tuple)是不可变的数据类型,所以它是可哈希的。因此,我们可以将列表(list)转换为元组,然后将其用作字典或集合的键。 下面是一个示例代码: Lists cannot be hashed because they are mutable (if the list changed the hash would change) and thus lists can't be counted by Counter objects. ・どう. The correct way to generate the list of dicts would be to pass just the coroutines to gather, await the results, and process them into a new dict: async def get_all_details (): category_list = await get_categories () details_list = await asyncio. TypeError: unhashable type: <whatever> usually happens when you try to use something unhashable as a key in a hash indexed data structure (e. TypeError: unhashable type: 'list' I've tried for over an hour to try to troubleshoot this error, but haven't. Country. However, since a Python list is a mutable and ordered data type, we can both access any of its items and modify them: # Access the 1st item of the list. it just fetches from as django queryset objects and converting into list to remove duplicates using itemgetter and itertools method like python remove duplicate dictionaries from a list. Improve this answer. To use a dict as a key you need to turn it into something that may be hashed first. This will return the subset of rows where at least a single cell is a list, which should help you locate the problem. Python IO Unhashable list Regex. TypeError: unhashable type: 'list' or. Solution to TypeError: unhashable type: ‘list’. items, dict. Dictionaries consist of two parts: keys and values. Hashable objects are those whose value doesn’t change over time but remain the same tuples and strings are types of hashable objects. Python unhashable type: slice on list. A possible cause of unhashable “TypeError” is when you’re using a list as a dictionary key. If you want to use lru_cache the arguments must be, for example, tuple s instead of list s. the TypeError: unhashable type: 'list' in Python ; Hash Function in Python Fix the TypeError: unhashable type: 'list' in Python ; This article will discuss the TypeError: unhashable type: 'list' and how to fix it in Python. 사전은 키-값 쌍으로 작동하는 Python의 데이터 구조이며 모든 키에는 그에 대한 값이 있으며 값의 값에. items ()) for d in l}] The strategy is to convert the list of dictionaries to a list of tuples where the tuples contain the items of the dictionary. In schemes function, you set color['nb'] to a list. In this tutorial we are going solve unhashable type error. ndarray 作为键,我们将遇到 TypeError: unhashable type: 'list' 和 TypeError: unhashable type: 'numpy. for key, value in dct. I have tried converting foodName to a tuple prior to using it to. The. I have listA=[[0,1,2]], and listB=[[0,1,2],[0,1,3],[0,2,3]], and want to obtain elements that are in listB but not in listA, i. Follow edited Jul 23, 2015 at 15:27. Series, my preferred approaches are. asked Nov 15, 2022 at 14:37. TypeError: unhashable type: 'dict' The problem is that a list/dict can't be used as the key in a dict, since dict keys need to be immutable and unique. python; json; pandas; dataframe; json-normalize; Share. Viewed 141 times 0 I want to append text column of my dataframe with image paths columns using collections. The provided code snippet resolves the issue. e. Day. We are passing a list as 4th key. スライスを. e. If you must, you can convert the list into a tuple to use it in a dictionary as a key. That’s because the hash value of an object must remain constant during its lifetime. append (key) values. List is not a hashable type in python. sum () Therefore is not fit to be used as a key inside a dictionary. First is used for the OrderedGroup of pipes. Learn more about TeamsAssuming each element in new_list_of_dict has one key-value pair:. asked Jul 23, 2015 at 13:46. Although you didn't specify exactly what data is, data['tweet_split'] is likely returning a list of lists, and FreqDist is a probably a dictionary-like object. 281 1 1 gold badge 6 6 silver badges 13 13 bronze badges. What Does Unhashable Mean? By definition, a dictionary key needs to be hashable. The issue is that lists can't be keys in a set - as they are mutable. values_counts() I get 2 for Japan and 1 for India. apply (tuple). Why Python TypeError: unhashable type: 'list' Hot Network Questions Exploring the Concept of "No Mind" in Eastern Philosophy: An Inquiry into the Foundations and Implicationspython遇到TypeError: unhashable type: ‘list’ 今天在写这个泰坦尼克号的时候,出现了这个bug。后来检查后,才发现Embarked这一列被我改成list类型了,自然不能够hash。因此对原始数据,重新跑一遍后,结果正确。 Examples of hashable objects: int, float, decimal, complex, bool, string, tuple, range, frozenset, bytes Examples of Unhash1 # Unhashable type (list) 2 my_list = [1, 2, 3] ----> 3 print (hash (my_list)) TypeError: unhashable type: 'list'. Follow asked Sep 1, 2021 at 10:59. – zzzeek. Q&A for work. How to fix the Python TypeError: Unhashable Type: ‘List’ errorDescribe the bug After restarting the webui today, the program that was running normally did not start, and it seems to no file changes were made to the file during that time. Consider a tuple which has a list (mutable). 99% time saved. 6 or above Sqlalchemy does not support auto increment for oracle 11g. Consider also Series. Improve this question. It would load all countries with the name DummyCountry, but only name and id fields. You are passing it a sequence of dicts some of whose values are coroutines. For example, you can use (assuming all values of args and kwargs are hashable) key = ( args , tuple (. I want group by year and month, then calculate the means,why it has wrong? python; python-2. Possible Duplicate: Python: removing duplicates from a list of lists Say i have list a=[1,2,1,2,1,3] If all elements in a are hashable (like in that case), this would do the job: list(set. 9, the @beartype decorator now deeply type-checks parameters and return values annotated by PEP 593 (i. Highest score (default) USE sqlalchemy 1. words () to store all words of the corpus in one list. Furthermore, unintended Series objects may be the cause. Requirement: I am trying to modify the source code to display only filtered channels. For sure it cannot be set, but look here: for keys in favorite_languages: if people in favorite_languages: # your elem = poeple (which is set) print (f"Thanks for taking our poll {people}")Because lists are unhashable and you are trying to store a structure which contains a list in a hash-based data structure. TypeError: unhashable type: 'list' in python nltk. ndarray' Hot Network Questions Why space is [not] ignored in macro arguments? Is it possible to edit name in a paper at the stage of pre-proof correction after acceptance? Not sure if "combined 90 men’s years experience" is right usage as opposed to "combined 90 man years worth of. This means that Python interprets your structure as a single set, to which you attempt to add a single item, which is a list - but lists cannot be hashed as they are mutable. Hashing is a mathematical process that turns data into a unique, fixed-length digital representation. So the way to achieve this is to first convert the dict to a list (which is sliceable). 6. append (channel) top = flask. 解決方法をご教授頂けると幸いです。. Ludovica Ludovica. TypeError: unhashable type: 'list' ----> 4 df ['Heavy Rain Indicator'] = (df ['Weather']. 1 Answer. Your problem is that datelist contains lists (results of re. . What you need is to get just the first item in list, written like so k = list[0]. string). 2 Answers. 7; pandas; pandas-groupby; Share. Community Bot. Take an element x sequentially from a list randomnodes and append the neighbors of x at the end of the list. 4. Reload to refresh your session. Only hashable types such as tuple, strings, numbers can be used as key in the dictionary. When you try to typecast a nested list object directly into a set object using the set() function. 89e-05 seconds. : list type을 int type으로 변경해준다. So there were 3 issues primarily: missing closing ) at few places; The method to access a dictionary key value should be dict[key] and if the dictionary is nested then it should be dict[key1][key2] and not dict[key1[key2]]; get_average() expects just the student name (i. Python 3. ImportError: cannot import name 'SliceType' 12. 1. falsetru. If the value of the object changed later, the hash value would not, and the dictionary would not be able to find the object. 10. Summary A DataFrame which contains a list is unhashable and therefore breaks st. also, you may check your variable col which it is not defined in your function, this may be a list. Python lists are not hashable because they are mutable. Hashability makes an object usable. ', '') data2 = data2. 00:00 Immutable objects are a type of object that cannot be modified after they were created. gather doesn't know what to do with that and attempts to treat the dicts as awaitable objects, which fails soon enough. As you already know list is a mutable Python object. That causes the message about unhashable type: list. Immutable Data Types: The built-in hash() function works natively with immutable data types like strings, integers, floats, and tuples. I want group by year and month, then calculate the means,why it has wrong? python; python-2. What you need is to get just the first item in list, written like so k = list[0]. Q&A for work. print(tpl[0][0]). e. The . set cheat sheet type set use Used for storing. Yep - pandas. For example, a categorical dimension could be a list of custom loss functions, or a list of cross-validation objects, or any other thing not hashable and not easily convertible to a hashable type. Python dictionary : TypeError: unhashable type: 'list' 0. Series). キーのデータ型にこだわらないと問題が発生します。たとえば、list または numpy. From your sample dataframe, it appears your airline series consists of list objects. Next actually keeping the list of tokenized words and then the list of pos tags and then the list of lemmas separately sounds logical but since the function finally only returns the function, you should be able to chain up the pos_tag(word_tokenize(. Closed adamerose opened this issue Feb 11, 2021 · 6 comments · Fixed by #40414. while it seems more logical for it to construct a set. If a column is not contained in the DataFrame, an exception will be raised. TypeError: lemmatize() missing 1 required positional argument: 'word. I have converted to tuple as you had suggest (I have updated the code in question). Data. AMC. variables [1] is a list and you can not use this line: if row not in assignment or column not in assignment: ex of search of a list in a dict: [123] in {1: 2} output: TypeError: unhashable type: 'list'. The hash value of an object is meant to semi-uniquely represent that object. Add a comment. Assuming each list within your airline series consists of only one element, you can transform your data before grouping. Connect and share knowledge within a single location that is structured and easy to search. actually with just a few weeks of experience in python you get used to the fact that dicts are far widely used than sets and to the default behaviour of {} – Ishan SrivastavaTeams. Viewed 2k times -1 Closed. Attempted to add a second y-axes using the code below:You simply messed up creating a new key - dicts are implemented as hash-maps and requires hashable objects as their keys. values depending on your use case. To get nunique or unique in a pandas. 2 Answers. Consider the following program:You signed in with another tab or window. From your sample dataframe, it appears your airline series consists of list objects. Lists are unhashable because they are mutable; changing their contents would change their hashvalue, which is not allowed. Since tuple is immutable object, it can be used as key in dictionary. lookup_field - The model field that should be used to for performing object lookup of individual model instances. TypeError: unhashable type: 'list' We see that Python tuples can be either hashable or unhashable. When we try to hash the tuple using the built-in hash () function, we get a unique hash value. 83 1 1 silver badge 6 6 bronze badges. any(1)]. This error occurs when trying to hash a list, which is an unhashable object. append (data) Hi all, Working on the assignment “Cleaning US Census Data” and I have to. Python dictionaries store their data in key-value format. To check if element exists in some List you use in operator, elem in list. Under Python ≥ 3. 1. There are no duplicates allowed. 왜냐하면, 사실상 a [result]에서 요청하는 값이 a [ [1]] 이런 모양이기 때문이다. If ngrams is a list of lists, as you've indicated in a comment to your question, then FreqDist () may be attempting to create a dictionary using the elements of ngrams as keys. 2. Since list is mutable and not hashable, it can't be used for grouping operations. Learn more about TeamsUnhashable type 'list' when using list comprehension in python [closed] Ask Question Asked 5 years, 6 months ago. 1. If you have a list, you can also convert the list to a tuple to make it hashable. 2. TypeError: unhashable type: ‘list’ usually occurs when you use the list as a hash argument. intやstrのようなハッシュ化可能なオブジェクトをkeyに設定する必要がある。. xlsx') If need processing all sheetnames converted to DataFrame s:The type class returns the type of an object. You cannot use a list to index a dictionary, so this: del dic [v] will fail. You signed out in another tab or window. NLTK TypeError: unhashable type: 'list'. 1. This is because the implementation uses some hash table to lookup the arguments efficiently. Each entry has three parts which are presented within a list. close() # replace all dots with empty string data1 = data1. str. Teams. Python structures such as Dictionary or a pandas DataFrame or Series objects, require that each object instance is uniquely identified . 4 Replies 29571 Views list many2many. index [-1]) df_list. assign (Foo=1), bar. A set needs a list of hashable objects; that is, they are immutable and their state doesn't change after they are created. Here's one way to generate a list of all words that appear in either document: infile1 = open("1. and I thinks you want to use {'List_of_date': List_of_date} as context for template render. Index objects (and therefore any grouped columns) cannot have lists, as these are mutable objects and therefore cannot form a stable index. duplicated ("phone")] # name kind phone # 2 [Carol Sway. From the Python glossary: An object is hashable if it has a hash value which never changes during its lifetime (it needs a __hash__ () method), and can be compared to other objects (it needs an __eq__ () or __cmp__ () method). Only hashable types such as tuple, strings, numbers can be used as key in the dictionary. It looks like there's an appetite for video like these. You are using list as an key in the dictionary. Learn more about Teams1 Answer. ndarray'でしょう)は、df1[51]またはdf2[41]のどちらかが文字列の場合に発生するでしょう。 表示されたデータフレームからすると、df2[41]の方が文字列と思われます。 両方とも文字列の場合はエラーは発生しないようです。One way is to convert the troublesome types to hashable alternatives. Instead, I get the TypeError: unhashable type: 'list'. 4. g. TypeError: unhashable type: 'list' Does anyone know how I could do this? Thanks. In this article, you will learn about how to fix TypeError: unhashable type: ‘list’ in python. fromkeys will accept any iterable as an argument (this is duck-typing ). 3. 0. In your code you are passing kmersdatapos to Word2Vec, which is list of list of list of strings. for p in punctuations: data = data. It can be employed with user-defined objects that remain unaltered after initialization. TypeError: unhashable type: 'list'. transform (tuple) – Panwen Wang. You probably wanted to create a dictionary instead and pass it to json. Connect and share knowledge within a single location that is structured and easy to search. You signed out in another tab or window. Examples of unhashable types include lists, sets, and dictionaries themselves. get (myFoodKey) This results in: TypeError: unhashable type: 'list'. @dataclass (frozen=True) Set unsafe_hash=True, which will create a __hash__ method but leave your class mutable. lst = [ ['Descendant Without A Conscience', 'good', 'happy'], ['Wolf Of The Solstice. _dict: TypeError: unhashable type: 'StyleProxy' in python. compile_channels (channels) if channel in channel_list: a. The TypeError: unhashable type: 'list' usually occurs when you try to use a list object as a set element or dictionary key and Python internally passes the unhashable list into the hash() function. 説明変数と目的変数を指定したいのですが、TypeError: unhashable type: 'slice'が. It's always the same: for one variable to group it's fine, for multiples I get the error: TypeError: unhashable type: 'list' For sure, all these variables are columns in df. If just name is supplied, typing. sum () If no NaN s values is possible use IanS solution: l = (df ['files']. In the string data type, the values are characters. In python, a list cannot be used as key in a dict. Line 7: The NumPy ndarray arr is converted to a tuple tuple_arr using the tuple () constructor to resolve the issue. df['Ratings'] = df. temp = nr. ・リストを集合型のキーとして使用している?. 9,554 10 10 gold badges 38. Since you are not modifying the lists, but only slicing, you may pass tuples, which are hashable. Lê Hồng Nhật Lê Hồng Nhật. Learn what this error means, why you see it, and how to solve it with an example of a Python code snippet. In BasePlot. Since DataFrame. When I run that function in a separate script using the ChessPlayerProfile dictionary it seems to work fine. ・ハッシュ化できない?. TypeError: unhashable type: 'list' or. You can convert to tuple first if want use value_counts: vc = df. Related. It should be corrected as. Open kbroughton opened this issue Feb 1, 2022 · 1 comment Open TypeError: unhashable type: 'list' in 'analyze' method building target_dict["duplicates"] #106. You cannot perform a slice on a Python dictionary like a list. txt", 'r') infile2 = open("2. Viewed 4k times 0 Closed. Here is when you can get the unhashable type ‘list’ error in Python… Let’s create a set of numbers: >>> numbers = {1, 2, 3, 4} >>> type(numbers) <class 'set'> All good so. read() #close files infile1. The solution is to use a string or a tuple as a key instead of a list. append (value) Please don't use dict as a variable name; you are shadowing the built-in type by doing that.