1. Arithmetic Operators:

    a = 10
    b = 3
    print(a + b)  # 13
    print(a - b)  # 7
    print(a * b)  # 30
    print(a / b)  # 3.333...
    print(a // b) # 3
    print(a % b)  # 1
    print(a ** b) # 1000
    
    
  2. Comparison Operators:

    x = 5
    y = 10
    print(x == y)  # False
    print(x != y)  # True
    print(x > y)   # False
    print(x < y)   # True
    print(x >= y)  # False
    print(x <= y)  # True
    
    
  3. Logical Operators:

    a = True
    b = False
    print(a and b)  # False
    print(a or b)   # True
    print(not a)    # False
    
    
  4. Assignment Operators:

    x = 5
    x += 3  # Equivalent to x = x + 3
    print(x)  # 8
    
    
  5. Identity Operators:

    a = [1, 2, 3]
    b = a
    print(a is b)   # True
    print(a is not b)  # False
    
    
  6. Membership Operators:

    myList = [1, 2, 3, 4, 5]
    print(3 in myList)    # True
    print(6 not in myList)  # True
    
    

These are fundamental operators in Python, and they are used extensively in writing Python code. Understanding how these operators work is crucial for effective programming in Python.