Problem: What is the difference between clientSocket = socket(AF_INET, SOCK_DGRAM) & clientSocket = socket.socket(AF_INET, SOCK_DGRAM)? These are lines from code where we create UDP Client, but I am unsure why we would use one over the other when we create a client socket.