Operators
Assuming a holds value of 10 and b holds value of 20.
Additional operators using "Wildcard" * were added from Feb 2022
*= means when the left value is equals to the right value, it returns true with * (Wildcard) Example: any_file_name.pdf *= *.pdf This returns True
!* means when the left value is not equal to the right value, it returns true with * (Wildcard) Example any_file-name.png !* *.pdf This returns True