Created
February 16, 2022 03:36
-
-
Save dance2die/a64d8ca47c9a664bd36a41f567700ad2 to your computer and use it in GitHub Desktop.
Revisions
-
dance2die created this gist
Feb 16, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 1. Compare numbers in a sequence. e.g. ```python # ok 3 > 2 > 1 1 < 2 < 3 # not 1 < 3 > 2 # not 2 > 1 and 1 < 3 ```