First page Back Continue Last page Overview Graphics
Types Basic Operations
- Operators
- +
- -
- *
- ** # power
- % # modulus
- “in” # check if element is in container
- Functions
- (Custom) operations that take one or more pieces of data as arguments
- len(‘world’)
- Methods
- Functions called directly off data using the “.” operator
- ‘Hello World”.split()