From 191f8243b2f6d0ebd191dc28ff2a581ff90ecf08 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Mon, 11 Jan 2010 17:42:03 -0500 Subject: [PATCH] +immutable --- native-datatypes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-datatypes.html b/native-datatypes.html index 73b2371..8a82022 100755 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -563,7 +563,7 @@ AttributeError: 'tuple' object has no attribute 'remove'

Sets

-

A set is an unordered “bag” of unique values. A single set can contain values of any datatype. Once you have two sets, you can do standard set operations like union, intersection, and set difference. +

A set is an unordered “bag” of unique values. A single set can contain values of any immutable datatype. Once you have two sets, you can do standard set operations like union, intersection, and set difference.

Creating A Set