Skip to content

Commit

Permalink
README.md: add new Basics
Browse files Browse the repository at this point in the history
  • Loading branch information
sealldeveloper authored Oct 15, 2024
1 parent 63fc195 commit 46a173d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ not())))))
### Basics

True => not()
False => not(not())
None => str(set().add(int()))
False => ()in()
None => str(set().add(()))
0 => int()
1 => int(not())
2 => int(not())+int(not())
10 => int(str(int(not()))+str(int()))
a => next(reversed(hex(ord(max(str(complex()))))))
<num>+1 => <num>+int(not())
<num-1 => max(range(<num>))
1 => (not())
2 => (not())+(not())
10 => int(str(+(not()))+str(int()))
a => chr(max(range(ord(max(bin(int()))))))
<num>+1 => <num>+(not())
<num>-1 => max(range(<num>))

See the full list at a later date...

Expand Down

0 comments on commit 46a173d

Please sign in to comment.