Added range evaluation and more operators
This commit is contained in:
@ -49,6 +49,10 @@ OPERATORS = {
|
||||
"*": operator.mul,
|
||||
"/": operator.truediv,
|
||||
"%": operator.mod,
|
||||
"|": operator.or_,
|
||||
"&": operator.and_,
|
||||
"<<": operator.ilshift,
|
||||
">>": operator.irshift
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user