Python的sets操作

x.union(y) This method returns all the unique items that are present in the two sets, as a new set. x_set | y_set x....

Dictionary的方法

len (x_dict)To know the number of key: value pairs in the dictionary.x_dict.keys ( )Returns all the 'keys' of diction...