Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MorvanZhou committed Aug 21, 2017
1 parent 2b5c6d8 commit d217e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basic/35_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
print(set(char_list))
print(set(sentence))

print(set([char_list, sentence]))
print(set(char_list+ list(sentence)))

unique_char = set(char_list)
unique_char.add('x')
Expand Down

0 comments on commit d217e98

Please sign in to comment.