# Put your name in the my_name variable.
my_name = 'Nicholas Holtman'
# Tuples
# 1. a. Create a tuple consisting of an int, a float, and a string
int_float_string = ___
# 1. b. Create a tuple with a single item
atomic_tuple = ___
# 2. Write a function that takes a pair and returns that pair
# as a tuple, reversed.
# I.e., if you pass in (a, b) the return should be (b, a)
def swap(pair):
# your implementation here
pass