You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/builtins/frozenset_func.md
+9-93Lines changed: 9 additions & 93 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,9 @@ The `frozenset()` function creates immutable sets from iterables.
14
14
15
15
## Basic Usage
16
16
17
+
!!! note "Element order in examples"
18
+
Frozensets are unordered. The element order shown in comments below is illustrative; actual `repr()` output is not guaranteed and may differ between runs, Python versions, or hash-randomization settings.
Copy file name to clipboardExpand all lines: docs/builtins/set_func.md
+16-61Lines changed: 16 additions & 61 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,9 @@ The `set()` function creates sets from iterables or creates empty sets.
14
14
15
15
## Basic Usage
16
16
17
+
!!! note "Element order in examples"
18
+
Sets are unordered. The element order shown in comments below is illustrative; actual `repr()` output is not guaranteed and may differ between runs, Python versions, or hash-randomization settings.
0 commit comments