Here's the code to create a queue, add an element to the queue, and remove an element from the queue:
```
from queue import Queue
# Create a queue
queue = Queue()
# Add an element to the queue
queue.put("Element 1")
# Remove an element from the queue
element = queue.get()
print(element)
```
This imports the `Queue` class from the `queue` module. The `Queue()` constructor is called to create a new queue object called `queue`. The `put()` method is called to add an element to the queue. The `get()` method is called to remove an element from the queue and assign it to the variable `element`, which is then printed.