We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b7f79 commit f492659Copy full SHA for f492659
python.md
@@ -85,7 +85,7 @@ d.get("key") # if "key" not in dict returns None
85
```py
86
s = set() # Empty set
87
s = {1, 2, 3} # Set with values
88
-s = set([1, 2, 3, 3] # Convert List into Set
+s = set([1, 2, 3, 3]) # Convert List into Set
89
90
# Modifications
91
s.add(4) # Add element
0 commit comments