I've been trying to do it for the past hour but I'm confused about it. This is what I've been trying so far but it doesn't seem to work no matter what I try.
def main():
q = queue.Queue()
name = input("Enter the person's name: ")
q.enqueue(name)
main()