my_set = {1, 2, 3, 4, 5}
print(my_set){1, 2, 3, 4, 5}my_set` that contains the elements 1, 2, 3, 4, and 5. The set is created using curly braces `{}` with each element separated by a comma. We then print the set using the `print()` function.