String
Integer
Boolean value (either True or False)
Addition
Unary positive, makes number positive
Subtraction
Unary negative, makes number negative
Multiplication
Division
Floor division (rounds division down)
Modulo (remainder of division)
Indice
Equals
a+=b is a=a+b
a-=b is a=a-b
a*=b is a=a*b
a/=b is a=a/b
a/=b is a=a//b
a%=b is a=a%b
a&=b is a=a&b
a|=b is a=a|b
a^=b is a=a^b
a>>>=b is a=a>>>b
a><<=b is a=a><<b
Is equal to
Is not equal to
Greater than
Less than
Greater than or equal to
Less than or equal to
Bitwise AND
Bitwise OR
Bitwise XOR
Arithmetic shift left (shifts all the bits one space to the left, essentially multiplying it by 2)
Logical shift right (shifts all the bits one space to the right, essentially dividing it by 2)
Bitwise NOT
AND operator
OR operator
NOT operator
Checks if two objects are the exact same object, not just the same value
Checks if two objects aren't the exact same object, even if they have the same value
Checks if an object is an element of another
Checks if an object isn't an element of another
Applies method to object
list.sort()
Denotes class of an object
Denotes instance of an object
Used to separate parameters
Instantiates data values of a list
Reference operator for a sequence container
Denotes generics of a function
Defines a tuple
Denotes parameters of a function
Denotes a class' superclass
Declares a function
Instantiates a dictionary
Instantiates a class object
Return annotation for functions, although doesn't force that return type
Defines a block
Defines a lambda expression
Declares a string
Declares a string
The splat; indicates unknown amount of arguments for a parameter and treats them as one tuple
Concatenates strings
'These are '&'two strings!'
Decorator operator; denotes a method decorator (a function wrapped around another function)
Used for declaring or initializing variables
Used for declaring subroutines (functions)
Executes code if condition is true
Used for declating code to execute when if statement is true
Ends a statement
Used for importing objects
Used for denoting alias of an object imported with Dim
Displays a window with text
Represents a true boolean value
True
Represents a false boolean value
False
Collection of Chart and Worksheet objects
Database query language integrated in VB, potential tool for employer
set.add(object)
set.add(object)
Selects a
set.add(object)
Creates a specified object
Creates a text file
Object.CreateTextFile(path[String], overwrite[Boolean], unicode[Boolean])
Writes a line to a text file
Closes a text file
Used to tell compiler the rest of this line is not to be compiled
' This isn't executed