Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion liststuples.html
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ <h2>8.1. Tuples are used for grouping data<a class="headerlink" href="#tuples-ar
horsemen = ["war", "famine", "pestilence", "death"]
print("pestilence" in horsemen) # True
print("debauchery" in horsemen) # False
print("debauchery" not in horsemen) # False</textarea>
print("debauchery" not in horsemen) # True</textarea>
</div>
<script type="text/javascript">
pythonTool.lineNumberFlags['listmembershipexample_code'] = true;
Expand Down