Skip to content

Commit f492659

Browse files
authored
Update python.md
1 parent 09b7f79 commit f492659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ d.get("key") # if "key" not in dict returns None
8585
```py
8686
s = set() # Empty set
8787
s = {1, 2, 3} # Set with values
88-
s = set([1, 2, 3, 3] # Convert List into Set
88+
s = set([1, 2, 3, 3]) # Convert List into Set
8989

9090
# Modifications
9191
s.add(4) # Add element

0 commit comments

Comments
 (0)